• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Looking for info/tech article on passing FP over TCPIP.

aCynic2

Senior member
It's going to be necessary for me to pass FP nummbers over a TCPIP connection. For now, it'll be between two or more windows machines, but eventually, I want to incorporate something universal (at least to include Linux/X11 and Windows).

UPDATE: Nevermind. After doing about six hours research, I guess it comes down to similar architectures can pass them back and forth quite liberally without mangling them.

Endianess is the biggest concern now that IEEE is the industry specification.
 
If all your processors are x86, I don't think there's much problem. There should be no endianness concerns.

On the other hand, if you want a real generic method, try MPI, the Message Passing Interface, or its Open relative. MPI takes a good deal of code overhead, but it lets just about any architecture talk to any other.
 
Originally posted by: Ken_g6
MPI takes a good deal of code overhead, but it lets just about any architecture talk to any other.

That won't be acceptable because the message passing will be relaying real time info so it needs to be efficient.
 
MPI is very efficient. It's used in supercomputers for internal communications. It's just not code-space-efficient (i.e. IMHO, it takes a lot of writing C code to get it working.)
 
Back
Top