I want to know the number of CPUs on the local machine in Python. The result should be user/real as output by time(1) when called with an optimally scaling userspace-only program.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
If you have python2.6 you can simply use
http://docs.python.org/library/multiprocessing.html#multiprocessing.cpu_count |
|||
|
||||
|
An other option is to use the
This should work on any platform supported by Note that in some occasions |
|||
|
Can't figure out how to add to the code or reply to the message but here's support for jython that you can tack in before you give up:
|
|||
|
|
|
You can also look how Parallel Python does it. |
|||||||
|