in reply to Re^3: how to multiply an array of number as fast as posible
in thread how to multiply an array of number as fast as posible

I am under the impression that Perl threads are bound to one CPU. Is that wrong?
  • Comment on Re^4: how to multiply an array of number as fast as posible

Replies are listed 'Best First'.
Re^5: how to multiply an array of number as fast as posible
by BrowserUk (Patriarch) on Sep 02, 2010 at 17:07 UTC
    I am under the impression that Perl threads are bound to one CPU. Is that wrong?

    Yes. That is wrong.

    Perl's threads are kernel threads, and kernel threads run on any available cpu.