Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Counting Physical and Logical Processors

0.00/5 (No votes)
1 Feb 2005 1  
How to determine the number of physical and logical processors on your computer.

Sample Image

Introduction

Contemporary Intel Pentium IV processors support the so called Hyper-Threading mode. With Hyper-Threading, a real physical processor presents itself to the operating system as two independent logical processors. Hyper-Threading technology lessens process switching overhead, increasing overall system throughput. But in some calculation intensive applications, this delusion of two logical processors may lead to the loss of effectiveness if the program will start two parallel threads, which will compete for one physical processor. Thus we have to determine how many physical processors we have in our computer to adjust the number of parallel threads to the number of physical processors. The latter utility shows how we can do it from a C# program.

Background

The CPU Counting utility is based on the following Intel documents and code samples:

Using the code

The CPU Counting utility consists of two parts - the client part and the server part. The client part written in C# calls the server function and displays its results. The server part actually determines the number of processors. It uses ASM commands extensively and therefore is written in managed C++.

The key part of the client is the call to the server function GetCPUCount.

C#
int LogicalNum   = 0;  // Number of logical CPU per ONE PHYSICAL CPU
int PhysicalNum  = 0;  // Total number of physical processor
CPUCountStatus HTStatusFlag = 0;

HTStatusFlag = CPUCount.GetCPUCount(ref LogicalNum, ref PhysicalNum);

Don't forget to add namespace usage statement.

C#
using CPUCounter;

Server part is implemented as a separate DLL, containing static function GetCPUCount of the class CPUCount.

MC++
// CPUCount.h

#pragma once

#using   <mscorlib.dll>
using namespace System;

namespace CPUCounter
{
    public __value enum CPUCountStatus
    {
        HT_NOT_CAPABLE,
        HT_ENABLED,
        HT_DISABLED,
        HT_SUPPORTED_NOT_ENABLED,
        HT_CANNOT_DETECT
    };

    public __value class CPUCount
    {
        public:
            static CPUCountStatus GetCPUCount(int __gc* LogicalNum, 
                                              int __gc* PhysicalNum);
    };

    unsigned int  HTSupported();
    unsigned int LogicalProcPerPhysicalProc();
    unsigned int GetAPIC_ID();
    CPUCountStatus DefineCPUCount(int __gc* LogicalNum, 
                                  int __gc* PhysicalNum);

}

Function GetCPUCount returns value of CPUCountStatus enum type. Meaning of CPUCountStatus values are:

HT_NOT_CAPABLE Hyper-threading technology doesn't exist in this system.
HT_ENABLED Hyper-threading technology is enabled in this system.
HT_DISABLED Hyper-threading technology is disabled in the hardware.
HT_SUPPORTED_NOT_ENABLED Hyper-threading technology is supported but disabled in the BIOS.
HT_CANNOT_DETECT Hyper-threading technology cannot be detected

To determine hyper-threading possibilities and the number of physical and logical processors in your computer, just copy the files CPUCounterClient.exe and CPUCounter.dll to some directory and run CPUCounterClient.exe.

History

This is the first version of the CPU counting utility.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here