Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Believably slow..

by aquarium (Curate)
on Jun 22, 2003 at 23:39 UTC ( [id://268009]=note: print w/replies, xml ) Need Help??


in reply to Unbelievably slow..

i'm fairly confident that the reason for the slowdown is that perl is converting to-and-from binary representation (vec) format, whilst C/C++ doesn't do any checking so you can just use it as integer or binary whenever. I don't know enough about the internals. Some other monk may know how to put this in code.

Replies are listed 'Best First'.
Re^2: Believably slow..
by tye (Sage) on Jun 23, 2003 at 03:44 UTC
    i'm fairly confident that the reason for the slowdown is that perl is converting to-and-from binary representation (vec) format

    No. The reason for the slow-down is mostly that Perl is dispatching a bunch of op-codes while the C++ code is compiled to native machine language.

    I don't think there is any conversion going on in that loop at all. It certainly isn't converting between "(vec) format" since vec deals with strings and we aren't doing any stringification here. Note that the bit-wise operators work both on strings and (unsigned) integers, figuring out which to do based on parameters given to them.

    It might be doing some conversion between integers and floating point, but I doubt it is doing much of that.

                    - tye
      Would this be a place to use XS? I am not an XS whiz, just making a guess, what does this code do anywhoo?
        This would be a fine opportunity for the use of XS because.. well, XS is C. :) So basically you'd be running the C code shown, except with a few megabytes of Perl interpreter laoded on top of it.

        Makeshifts last the longest.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-25 23:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found