I already found a solution for "Most unixes" via cmdline "cat /proc/cpuinfo", but a pure-ruby solution would be nicer...
This facter gem is the best, it's not platform specific and designed to do this exact thing. |
|||||||||||||
|
|
I am currently using this, which covers all os. https://github.com/grosser/parallel/blob/master/lib/parallel.rb#L63
|
|||||
|
|
with JRuby you can check it with the following Java code:
|
|||||
|
|
Surely if you can You may just need to detect what platform you're on dynamically and either:
That last line can use:
Then use info's NumberOfProcessors item. |
||||
|
Here is an implementation for Linux, OSX, Windows and BSD: https://gist.github.com/1009994 |
|||
|
|
|
@grosser: when /linux/ `grep -c processor /proc/cpuinfo`.to_i http://www.partmaps.org/era/unix/award.html#cat |
||||
|
|
|
I found something recently that may have to be taken into consideration. You can deactivate processors (take them offline), and then facter processorcount (plus some of the other methods above) gives the wrong result. You can count processor lines in /proc/cpuinfo, as long as you do it correctly. If you just populate an array with index numbers of the procs, if you have gaps in the procs (as in, procs 0,1,2,10,11,12 are active, all others to 20 say are inactive), it will automatically spring indexes 3-9 into existence (sort of), at least Array#size will report 13 in that case. You would have to do #compact to get the number of active processors. However, if you want total processors, perhaps better is looking at /sys/devices/system/cpu[0-9], and count that up. That will give you the total number of processors, but not how many (or which ones) are active. Just something to think about. I trying to put through a patch to facter to add an activeprocessorcount and totalprocessorcount fact. |
|||
|
|