新しい i7 ベースのマシンで CPUID ベースのコードに問題があります。CPU が、それぞれ 2 つの HT ユニットを備えた 4 つのコアではなく、8 つの HT ユニットを備えた単一のコアを持つものとして検出されます。
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 に対して繰り返されます。
誰もこれに直面したことがありますか?