up vote 7 down vote favorite
2
share [g+] share [fb]

I already found a solution for "Most unixes" via cmdline "cat /proc/cpuinfo", but a pure-ruby solution would be nicer...

link|improve this question

feedback

7 Answers

$ gem install facter
$ irb
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'facter'
=> true
irb(main):003:0> Facter.loadfacts
=> true
irb(main):004:0> puts Facter.sp_number_processors
2
=> nil
irb(main):005:0>

This facter gem is the best, it's not platform specific and designed to do this exact thing.

link|improve this answer
nice solution, ill check it out, since i am working on a public library i did not want to add an extra dependency for something this trivial – grosser May 27 '09 at 5:09
Unfortunately, this doesn't detect hyper threaded cpus. – jer Mar 29 '11 at 14:09
+1 facter is great, because it works cross-platform! – Tilo Oct 19 '11 at 18:34
For those coming here and wondering why Facter.sp_number_processors doesn't work in the latest version, try Facter.processorcount instead. – Nathan Kleyn Oct 20 '11 at 15:17
feedback

with JRuby you can check it with the following Java code:

 Runtime runtime = Runtime.getRuntime();   
 int numberOfProcessors = runtime.availableProcessors();
link|improve this answer
1  
I've voted this one up particularly because of the implicit point that with JRuby you can actually use those extra cores with Ruby's Thread class! Might it be worth adding this version of the example too? #!/usr/bin/jruby include Java puts "You have #{java.lang.Runtime.getRuntime.availableProcessors} cores" – Mark Longair Jun 10 '10 at 14:08
feedback
up vote 6 down vote accepted

I am currently using this, which covers all os. https://github.com/grosser/parallel/blob/master/lib/parallel.rb#L63

  def self.processor_count
    case RbConfig::CONFIG['host_os']
    when /darwin9/
      `hwprefs cpu_count`.to_i
    when /darwin/
      ((`which hwprefs` != '') ? `hwprefs thread_count` : `sysctl -n hw.ncpu`).to_i
    when /linux/
      `cat /proc/cpuinfo | grep processor | wc -l`.to_i
    when /freebsd/
      `sysctl -n hw.ncpu`.to_i
    when /mswin|mingw/
      require 'win32ole'
      wmi = WIN32OLE.connect("winmgmts://")
      cpu = wmi.ExecQuery("select NumberOfCores from Win32_Processor") # TODO count hyper-threaded in this
      cpu.to_enum.first.NumberOfCores
    end
  end
link|improve this answer
1  
If you copy-and-paste this method out of Parallel, you'll need to also pull the hwprefs_available method as well -- or better, require the gem and call Parallel.processor_count. – mrm Aug 14 '11 at 0:04
feedback

Surely if you can cat it, you can open, read and close it using the standard features of the language without resorting to a system()-type call.

You may just need to detect what platform you're on dynamically and either:

  • use the /proc/cpuinfo "file" for Linux; or
  • communicate with WMI for Windows.

That last line can use:

require 'win32ole'
wmi = WIN32OLE.connect("winmgmts://")
info = wmi.ExecQuery ("select * from Win32_ComputerSystem")

Then use info's NumberOfProcessors item.

link|improve this answer
Or possibly NumberOfProcessors. ;-) – Stobor May 21 '09 at 6:00
Thanks, I hoped it would be something easy, for now I will skip this feature :) – grosser May 21 '09 at 6:08
Thanks, @Stobor, fixed. – paxdiablo May 21 '09 at 6:10
feedback

Here is an implementation for Linux, OSX, Windows and BSD: https://gist.github.com/1009994

link|improve this answer
I like this clean solution. It works on my OpenBSD system. – Clint Pachl Nov 8 '11 at 10:28
feedback

on Mac:

thiago-pradis-macbook:~ tchandy$ hwprefs cpu_count

2

link|improve this answer
feedback

@grosser:

when /linux/  
  `grep -c processor /proc/cpuinfo`.to_i

http://www.partmaps.org/era/unix/award.html#cat
http://www.partmaps.org/era/unix/award.html#wc

link|improve this answer
nice and short / only using one command :) – grosser Aug 8 '11 at 16:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.