Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Stumped by a pack/unpack problem

by brian_d_foy (Abbot)
on Feb 22, 2005 at 04:51 UTC ( [id://433251]=note: print w/replies, xml ) Need Help??


in reply to Stumped by a pack/unpack problem

One solution I've seen elsewhere turned the float into an int by multiplying by a set power of ten. The precision was set by the spec, so they knew they only need 4 decimal places. Then they packed the int in network order (that's the N in your second example). When they unpacked it, they divided by the same power of ten.

If you want this to be really fast, you can cook up something simple in C (or even Inline::C) to do the same thing. Since you are using pack(), your Perl and C implementations will probably look the same so once you figure it out in Perl, it should be easy to translate to C.

There was one time I had to do this for several gigs of data, and I actually pulled out the assembly language to do it. The target was the Motorola 68k family, which had several nice instructions to flip these things around (flip the words, then flip the bytes in the words). That was a huge win even over the C code. I only got away with that because I knew exactly which microprocessors we had to use for the problem (ah, the joys of custom built hardware!)

Good luck!

--
brian d foy <bdfoy@cpan.org>

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://433251]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-16 14:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found