vote up 12 vote down star

How do you detect the number of physical processors/cores in .net?

flag

7 Answers

vote up 18 vote down check
System.Environment.ProcessorCount

returns the number of logical processors

http://msdn.microsoft.com/en-us/library/system.environment.processorcount.aspx

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

Win32_ComputerSystem.NumberOfProcessors returns physical count

Win32_ComputerSystem.NumberOfLogicalProcessors returns logical (duh!)

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.

Win32_Processor.NumberOfLogicalProcessors

Win32_Processor.NumberOfCores

On multicore systems these are typically the same the value.

link|flag
You should note, it's supported only in XP SP3/Win2k3 and upwards. – Rick Minerich Oct 9 '08 at 20:10
Rick there was a hotfix for XPSP2 support.microsoft.com/kb/936235 – stephbu Oct 10 '08 at 3:18
vote up 4 vote down

Environment.ProcessorCount

EDIT: available in .NET 2.0, not in .NET 1.1

link|flag
Doesn't return the number of cores however. Only logical CPUs – stephbu Oct 9 '08 at 18:33
vote up 3 vote down

System.Environment.ProcessorCount is what you need

link|flag
posted Environment.GetEnvironmentVariable("NUMBER_OF_PROCESSORS") first, but then I realized it was already parsed in a separate property – Tsvetomir Tsonev Oct 9 '08 at 18:22
vote up 3 vote down

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.

link|flag
Hey Rick there was a HF for XP SP2 to support the same objects support.microsoft.com/kb/936235 – stephbu Oct 10 '08 at 3:19
vote up 3 vote down

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:

// <copyright file="ProcessInfo.cs" company="Always Elucidated Solution Pioneers, LLC">
// Copyright (c) 2008 All Rights Reserved
// </copyright>
// <author>Jesse C. Slicer</author>
// <email>jslicer@spamcop.net</email>
// <date>2008-08-05</date>
// <summary>Part of the Aesop.Diagnostics.dll assembly.</summary>

namespace Aesop
{
    #region Using Directives

    // System namespaces
    using System;
    using System.Diagnostics;

    #endregion

    #region Class Definition : ProcessInfo

   /// <summary>
   /// Privides a single property which gets the number of processor threads
   /// available to the currently executing process.
   /// </summary>
    public static class ProcessInfo
    {
       #region Private Static Member Data

      /// <summary>
      /// Holds the value of the currently executing process.
      /// </summary>
      private static readonly Process currentProcess =
         Process.GetCurrentProcess();

      #endregion

       #region Public Static Properties

      /// <summary>
      /// Gets the number of processors.
      /// </summary>
      /// <value>The number of processors.</value>
      public static uint NumberOfProcessorThreads
      {
         get
         {
            if (currentProcess == null)
            {
               return (uint) Environment.ProcessorCount;
            }

            var processAffinityMask =
               (uint)currentProcess.ProcessorAffinity;
            const uint BitsPerByte = 8;
            var loop = BitsPerByte * sizeof(uint);
            uint result = 0;

            while (loop > 0)
            {
               --loop;
               result += (processAffinityMask & 1);
               processAffinityMask >>= 1;
            }

            return (result != 0) ? result : 1;
         }
      }

      #endregion
    }

    #endregion
}
link|flag
vote up 1 vote down

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.

link|flag
Not quite true - there were several service packs to enable WMI CPU metadata for both XP and Win2k3 – stephbu Oct 9 '08 at 18:31
Fair enough -- when I needed to do it I was wanting to simply use the Win32 APIs not dig through WMI (especially if I had to know which processor had which features) – Rob Walker Oct 9 '08 at 19:41
vote up 1 vote down

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:

http://support.microsoft.com/kb/932370

link|flag

Your Answer

Get an OpenID
or

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