vote up 27 vote down star
17

This is more of a curiosity question than something that needs actual solving, but is there a way to determine how many cores a machine has from C++ in a platform-independent way? If no such thing exists, what about determining it per-platform (Windows/*nix/Mac)?

flag

14 Answers

vote up 88 vote down check

Win32:

SYSTEM_INFO sysinfo;
GetSystemInfo( &sysinfo );

numCPU = sysinfo.dwNumberOfProcessors;

Linux, Solaris, & AIX (per comments):

 numCPU = sysconf( _SC_NPROCESSORS_ONLN );

FreeBSD, macosx, NetBSD, OpenBSD, etc.:

nt mib[4];
size_t len; 

/* set the mib for hw.ncpu */
mib[0] = CTL_HW;
mib[1] = HW_AVAILCPU;  // alternatively, try HW_NCPU;

/* get the number of CPUs from the system */
sysctl(mib, 2, &numCPU, &len, NULL, 0);

if( numCPU < 1 ) 
{
     mib[1] = HW_NCPU;
     sysctl( mib, 2, &numCPU, &len, NULL, 0 );

     if( numCPU < 1 )
     {
          numCPU = 1;
     }
}

HPUX:

numCPU = mpctl(MPC_GETNUMSPUS, NULL, NULL);

IRIX:

numCPU = sysconf( _SC_NPROC_ONLN );


Mac OS X using Objective-C++:

NSUInteger a = [[NSProcessInfo processInfo] processorCount];
NSUInteger b = [[NSProcessInfo processInfo] activeProcessorCount];
link|flag
Nice. Thorough. Awesome. – Tanktalus Sep 29 '08 at 22:27
I'd give you a double rate-up if I could. – Fhoxh Sep 29 '08 at 23:33
Thanks, I like to see thorough answers and code myself ;) – ceretullis Sep 30 '08 at 2:12
The "Linux & Solaris" example appears to be the right answer for AIX, not the "FreeBSD..." example. – Fred Larson Oct 13 '08 at 15:56
1  
@Dmitri Nesteruk: Environment.ProcessorCount is a .NET function, this question is tagged C++. Cheers. – ceretullis Feb 1 at 22:33
show 3 more comments
vote up 0 vote down

Assembly code for this can be found in this question.

link|flag
vote up 0 vote down

OS X alternative: The solution described earlier based on [[NSProcessInfo processInfo] processorCount] is only available on OS X 10.5.0, according to the docs. For earlier versions of OS X, use the Carbon function MPProcessors().

If you're a Cocoa programmer, don't be freaked out by the fact that this is Carbon. You just need to need to add the Carbon framework to your Xcode project and MPProcessors() will be available.

link|flag
vote up 0 vote down

In Linux, you can checkout dmesg and filter the lines where ACPI initializes the CPUs, something like:

dmesg | grep 'ACPI: Processor'

Other possibility is to use dmidecode to filter out the processor information.

link|flag
vote up 1 vote down

you can use WMI in .net too but you're then dependent on the wmi service running etc. Sometimes it works locally, but then fail when the same code is run on servers. I believe that's a namespace issue, related to the "names" whose values you're reading.

link|flag
vote up 1 vote down

One more Windows recipe: use system-wide environment variable NUMBER_OF_PROCESSORS:

printf("%d\n", atoi(getenv("NUMBER_OF_PROCESSORS")));
link|flag
vote up 8 vote down

OpenMP is supported on many platforms (including Visual Studio 2005) and it offers a

int omp_get_num_procs();

function that returns the number of processors/cores available at the time of call.

link|flag
why did this get voted down, it's a reasonable answer – Evan Teran Dec 21 '08 at 19:07
vote up 4 vote down

Note that "number of cores" might not be a particularly useful number, you might have to qualify it a bit more. How do you want to count multithreaded CPUs such as Intel HT, IBM Power5 and Power6, and most famously, Sun's Niagara/UltraSparc T1 and T2? Or even more interesting, the MIPS 1004k with its two levels of hardware threading (supervisor AND user-level)... Not to mention what happens when you move into hypervisor-supported systems where the hardware might have tens of CPUs but your particular OS only sees a few.

The best you can hope is to tell the number of logical processing units that you have in your local OS partition, you can really forget about seeing the true machine unless you are a hypervisor. The only exception to this rule today is in x86 land, but the end of non-virtual machines is coming fast...

link|flag
vote up 3 vote down

If you have assembly-language access, you can use the CPUID instruction to get all sorts of information about the CPU. It's portable between operating systems, though you'll need to use manufacturer-specific information to determine how to find the number of cores. Here's a document that describes how to do it on Intel chips, and page 11 of this one describes the AMD specification. If you need some example code for it, just ask. :-)

link|flag
1  
Seriously, why did this get downrated? – DrJokepu Dec 21 '08 at 19:07
Great answer, thanks. ++ – ttvd Nov 27 at 17:10
vote up 0 vote down

On linux the best programmatic way as far as I know is to use sysconf(_SC_NPROCESSORS_CONF) or sysconf(_SC_NPROCESSORS_ONLN).

These aren't standard, but are in my man page for Linux.

link|flag
vote up 11 vote down

The Boost.Thread library has a function called thread::hardware_concurrency() which returns the number of hardware threads available on a system based on number of cpus, cores or hyperthreading units.

link|flag
Appreciate you mentioning this, nice to know this functionality is in Boost now. – ceretullis Feb 1 at 22:34
Seconded...was going to use the sample code above and some preprocessor macros to expose a single function, but the hard-work was done for me. – jkp May 22 at 8:35
vote up 5 vote down

You probably won't be able to get it in a platform independent way. Windows you get get number of processors.

Win32 System Information

link|flag
Carefull: Hyperthreaded processors say there are two. So you also need to see if the processor are hyperthread capable. – Martin York Sep 29 '08 at 20:46
vote up 8 vote down

On Linux, you can read the /proc/cpuinfo file and count the cores.

link|flag
Except that that also counts hyperthreaded or other SMT solutions as more cores... – jakobengblom2 Oct 12 '08 at 19:08
jakobengblom2: And how is that /wrong/? – Arafangion Jun 12 at 0:09
@Arafangion: hyperthreading is not true parallel execution, it's a technology for reducing context switching overhead. A hyperthreaded cpu can only execute one thread at a time, but it can store the architectural state (register values etc.) of two threads at the same time. The performance characteristics are very different from having two cores. – wcoenen Jul 10 at 4:17
vote up 1 vote down

Windows Server 2003 and later lets you leverage the GetLogicalProcessorInformation function

http://msdn.microsoft.com/en-us/library/ms683194.aspx

link|flag

Your Answer

Get an OpenID
or

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