Is there a way via .NET/C# to find out the number of CPU cores?
PS This is a straight code question, not a "Should I use multi-threading?" question! :-)
|
Is there a way via .NET/C# to find out the number of CPU cores? PS This is a straight code question, not a "Should I use multi-threading?" question! :-) |
|||||
|
|
There are several different pieces of information relating to processors that you could get: number of physical processors, number of cores, number of logical processors. These can all be different; in the case of a machine with 2 dual-core hyper-threading-enabled processors, there are 2 physical processors, 4 cores, and 8 logical processors. The number of logical processors is available through the Environment class, but the other information is only available through WMI (and you may have to install some hotfixes or service packs to get it on some systems): Physical Processors:
Cores:
Logical Processors:
OR
Processors excluded from Windows: You can also use Windows API calls in setupapi.dll to discover processors that have been excluded from Windows (e.g. through boot settings) and aren't detectable using the above means. The code below gives the total number of logical processors (I haven't been able to figure out how to differentiate physical from logical processors) that exist, including those that have been excluded from Windows:
|
|||||||||||||||||
|
|
|||||||||
|
|
Environment.ProcessorCount should give you the number of cores on the local machine. |
|||||||
|
|
WMI queries are slow, so try to Select only the desired members instead of using Select *. The following query takes 3.4s:
While this one takes 0.122s:
|
|||
|
|