![]() |
General Reading »
Hardware & System »
System
Intermediate
Counting Physical and Logical ProcessorsBy Gregory GintsbergHow to determine the number of physical and logical processors on your computer. |
C#, VC7.1.NET 1.1, .NET 2.0, Win2K, WinXP, Win2003VS.NET2003, Dev
|
|
Advanced Search |
|
|
|
||||||||||||||||

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.
The CPU Counting utility is based on the following Intel documents and code samples:
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.
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.
using CPUCounter;
Server part is implemented as a separate DLL, containing static function GetCPUCount of the class CPUCount.
// 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.
This is the first version of the CPU counting utility.
| You must Sign In to use this message board. | ||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 1 Feb 2005 Editor: Smitha Vijayan |
Copyright 2005 by Gregory Gintsberg Everything else Copyright © CodeProject, 1999-2009 Web16 | Advertise on the Code Project |