Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)?

share|improve this question
If you want to use it find out how many threads to start please use NUMBER_OF_PROCESSORS as primary measure. I leave it as an excercise to you why this is much better (if people would use it more) then using hardware cores. How much cores belong to your program are an environmental issue! – Lothar Dec 14 '12 at 19:55

18 Answers

up vote 295 down vote accepted

Win32:

SYSTEM_INFO sysinfo;
GetSystemInfo( &sysinfo );

numCPU = sysinfo.dwNumberOfProcessors;

Linux, Solaris, & AIX and Mac OS X (for all OS releases >= 10.4, i.e., Tiger onwards) - per comments:

 numCPU = sysconf( _SC_NPROCESSORS_ONLN );

FreeBSD, MacOS X, NetBSD, OpenBSD, etc.:

int mib[4];
size_t len = sizeof(numCPU); 

/* 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 (10.5 and newer) or iOS (any version) using Objective-C:

NSUInteger a = [[NSProcessInfo processInfo] processorCount];
NSUInteger b = [[NSProcessInfo processInfo] activeProcessorCount];
share|improve this answer
1  
The "Linux & Solaris" example appears to be the right answer for AIX, not the "FreeBSD..." example. – Fred Larson Oct 13 '08 at 15:56
4  
@Dmitri Nesteruk: Environment.ProcessorCount is a .NET function, this question is tagged C++. Cheers. – ceretullis Feb 1 '09 at 22:33
4  
@mcandre: that is left as an exercise for the reader. If I were implementing I'd probably use template-policy approach where the policy was defined in preprocessor directives. Or... you could use boost thread::hardware_concurrency(). – ceretullis Jun 22 '10 at 20:26
1  
Just in case someone bumps into this problem:In macosx, I had to initialize len = sizeof(numCPU); – Hugo Peixoto Nov 10 '10 at 11:00
1  
nt mib[4] in line 1 of the FreeBSD example should probably be int mib[4] and len needs to be initialized to sizeof(numCPU) – vy32 Dec 7 '10 at 2:23
show 17 more comments

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

Update: It was mentioned in the comments that this is part of the C++11 standard. It is available as std::thread::hardware_concurrency().

share|improve this answer
1  
Appreciate you mentioning this, nice to know this functionality is in Boost now. – ceretullis Feb 1 '09 at 22:34
1  
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 '09 at 8:35
For win32, it's a call to GetSystemInfo. (As of boost Version 1.41.0) Does that capture all the info to determine how many worker threads would be effective? Does one need to consider both the number of cores and hyper-threading? unsigned thread::hardware_concurrency() { SYSTEM_INFO info={0}; GetSystemInfo(&info); return info.dwNumberOfProcessors; } – Jive Dadson Apr 21 '10 at 19:51
According to MSDN, GetSystemInfo() returns the number of "physical processors" in dwNumberOfProcessors but it doesn't define what it means by that. The Boost documentation seems to claim that it includes hyperthreading units. – Ferruccio Apr 21 '10 at 20:26
7  
Also, this is going to be the standard way. I'm disappointed that this answer got much less votes than the accepted one. – ybungalobill Dec 5 '10 at 9:54
show 1 more comment

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.

share|improve this answer
2  
why did this get voted down, it's a reasonable answer – Evan Teran Dec 21 '08 at 19:07

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. :-)

share|improve this answer
5  
Seriously, why did this get downrated? – DrJokepu Dec 21 '08 at 19:07
1  
Great answer, thanks. ++ – ttvd Nov 27 '09 at 17:10
2  
It may have been downvoted because the question is tagged as C++ and this answer doesn't apply to systems running C++ on non-x86 architectures (ARM, PPC, etc.). I'm not saying it's a good reason to downvote an answer, just a possibility. – Ferruccio Feb 23 '11 at 12:10
FYI... both links are now broken... – Homer6 Nov 7 '11 at 6:50
Thanks for the heads-up, Homer6. I've updated both links. – Head Geek Nov 7 '11 at 15:42

(Almost) Platform Independent function in c-code

#ifdef _WIN32
#include <windows.h>
#elif MACOS
#include <sys/param.h>
#include <sys/sysctl.h>
#else
#include <unistd.h>
#endif

int getNumCores() {
#ifdef WIN32
    SYSTEM_INFO sysinfo;
    GetSystemInfo(&sysinfo);
    return sysinfo.dwNumberOfProcessors;
#elif MACOS
    int nm[2];
    size_t len = 4;
    uint32_t count;

    nm[0] = CTL_HW; nm[1] = HW_AVAILCPU;
    sysctl(nm, 2, &count, &len, NULL, 0);

    if(count < 1) {
        nm[1] = HW_NCPU;
        sysctl(nm, 2, &count, &len, NULL, 0);
        if(count < 1) { count = 1; }
    }
    return count;
#else
    return sysconf(_SC_NPROCESSORS_ONLN);
#endif
}
share|improve this answer
Seems HW_NCPU is deprecated on OS X source – Inge Henriksen Feb 26 at 10:26

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

share|improve this answer
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 '09 at 0:09
8  
@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. – Wim Coenen Jul 10 '09 at 4:17

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

Win32 System Information

share|improve this answer
1  
Carefull: Hyperthreaded processors say there are two. So you also need to see if the processor are hyperthread capable. – Loki Astari Sep 29 '08 at 20:46

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...

share|improve this answer

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

printf("%d\n", atoi(getenv("NUMBER_OF_PROCESSORS")));
share|improve this answer

More on OS X: sysconf(_SC_NPROCESSORS_ONLN) is available only versions >= 10.5, not 10.4.

An alternative is the HW_AVAILCPU/sysctl() BSD code which is available on versions >= 10.2.

share|improve this answer

Windows Server 2003 and later lets you leverage the GetLogicalProcessorInformation function

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

share|improve this answer

Unrelated to C++, but on Linux I usually do

`cat /proc/cpuinfo | grep processor | wc -l`

Handy for scripting languages like bash/perl/python/ruby.

share|improve this answer
2  
For python: import multiprocessing print multiprocessing.cpu_count() – initzero Aug 22 '11 at 18:20

hwloc (http://www.open-mpi.org/projects/hwloc/) is worth looking at. Though requires another library integration into your code but it can provide all the information about your processor (number of cores, the topology, etc.)

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

Assembly code for this can be found in this question.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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