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)?
|
|
Win32:
Linux, Solaris, & AIX and Mac OS X (for all OS releases >= 10.4, i.e., Tiger onwards) - per comments:
FreeBSD, MacOS X, NetBSD, OpenBSD, etc.:
HPUX:
IRIX:
Mac OS X (10.5 and newer) or iOS (any version) using Objective-C:
|
|||||||||||||||||||||
|
|
The Boost.Thread library has a function called Update: It was mentioned in the comments that this is part of the C++11 standard. It is available as |
|||||||||||||||||
|
|
OpenMP is supported on many platforms (including Visual Studio 2005) and it offers a
function that returns the number of processors/cores available at the time of call. |
|||||
|
|
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. :-) |
|||||||||||||||||
|
|
(Almost) Platform Independent function in c-code
|
|||
|
|
|
On Linux, you can read the /proc/cpuinfo file and count the cores. |
|||||||||
|
|
You probably won't be able to get it in a platform independent way. Windows you get get number of processors. |
|||||
|
|
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... |
|||
|
|
|
One more Windows recipe: use system-wide environment variable
|
|||
|
|
|
More on OS X: An alternative is the |
||||
|
|
|
Windows Server 2003 and later lets you leverage the GetLogicalProcessorInformation function |
|||
|
|
|
Unrelated to C++, but on Linux I usually do
Handy for scripting languages like bash/perl/python/ruby. |
|||||
|
|
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.) |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Assembly code for this can be found in this question. |
|||
|
|
|
In Linux, you can checkout dmesg and filter the lines where ACPI initializes the CPUs, something like:
Other possibility is to use dmidecode to filter out the processor information. |
|||
|
|
