How do you detect the number of physical processors/cores in .net?
|
|
|
|
|
|
|
returns the number of logical processors
For physical processor count you'd probably need to use WMI - the following metadata is supported in XP/Win2k3 upwards (Functionality enabled in SP's prior to Vista/Win2k8).
Be cautious that HyperThreaded CPUs appear identical to multicore'd CPU's yet the performance characteristics are very different. To check for HT-enabled CPUs examine each instance of Win32_Processor and compare these two properties.
On multicore systems these are typically the same the value. |
||||
|
|
|
Environment.ProcessorCount EDIT: available in .NET 2.0, not in .NET 1.1 |
||
|
|
|
System.Environment.ProcessorCount is what you need |
||
|
|
|
This actually varies quite a bit depending on the target platform. Stephbu's answer will work great on XP SP3 and newer. If you are targeting older platforms, you may want to check out this article. I wrote it about half a year ago and in it I discuss several different ways to do this as well as the individual pros and cons of each method. You may also want to check out this code project article if you are interested in differentiating shadow cores from hyperthreading from real ones. |
|||
|
|
|
While Environment.ProcessorCount will indeed get you the number of virtual processors in the system, that may not be the number of processors available to your process. I whipped up a quick little static class/property to get exactly that:
|
||
|
|
|
|
Environment.ProcessorCount will also include any hyperthreaded processors. There is no way (at least up through Windows 2003) to distinguish a hyperthreaded processor from one with two cores. |
||||
|
|
|
Don't have enough rep for the wiki, but note that in addition to XPSP2, Windows 2003 Server SP1 and SP2 also need a hotfix to enable this functionality: |
||
|
|
