我在基于 i7 的较新机器上的基于 CPUID 的代码存在问题。它将 CPU 检测为具有 8 个 HT 单元的单核,而不是每个具有 2 个 HT 单元的 4 个核。
我一定是误解了从 CPU 返回的 CPUID 信息的结果,但我不知道如何。
基本上,我遍历每个对 Windows 可见的处理器,为该线程设置线程亲和性,然后进行一系列 CPUID 调用。
args = new CPUID_Args();
args.eax = 1;
executeHandler(ref args);
if (0 != (args.edx & (0x1 << 28)))
{
//If the 28th bit in EDX is flagged, this processor supports multiple logical processors per physical package
// in this case bits 23:16 of EBX should give the count.
//** EBX here is 0x2100800
logicalProcessorCount = (args.ebx & 0x00FF0000) >> 16;
//** this tells me there are 16 logical processors (wrong)
}
else
{ logicalProcessorCount = 1; }
apic = unchecked((byte)((0xFF000000 & args.ebx) >> 24));
if (maximumSupportedCPUID >= 4)
{
args = new CPUID_Args();
args.eax = 4;
executeHandler(ref args);
//EAX now contains 0x1C004121
coreCount = 1 + ((args.eax & 0xFC000000) >> 26);
//This calculates coreCount as 8
}
else
{ coreCount = 1; }
该序列对系统中的其余 CPU 重复。
有没有人遇到过这个问题?