物理プロセッサ/コア数の決定
最適なパフォーマンスを得るには、マルチスレッド アプリケーションでは物理プロセッサまたはコアの正確な数が必要です。特に複数の論理スレッドが 1 つの物理コア上で実行されるハイパースレッディングを考慮すると、論理プロセッサの数を検出するだけでは不十分です。
ハイパースレッディングのサポートとアクティブ化の検出
正確にカウントするには物理プロセッサの場合、ハイパースレッディングがサポートされ有効になっているかどうかを判断することが重要です。これには、CPUID 命令の EDX レジスタのビット 28 を調べる必要があります。このビットが設定されている場合、ハイパースレッディングがサポートされます。ただし、サポートを確認するだけでは不十分です。ビットもアクティブである必要があります。
CPUID 命令を使用した実装
CPUID 命令を使用した包括的な C ソリューションが示されています。
<code class="cpp">#include <iostream> #include <string> void cpuID(unsigned i, unsigned regs[4]) { ... } int main() { unsigned regs[4]; char vendor[12]; // Get vendor cpuID(0, regs); ((unsigned *)vendor)[0] = regs[1]; ((unsigned *)vendor)[1] = regs[3]; ((unsigned *)vendor)[2] = regs[2]; string cpuVendor = string(vendor, 12); // Get CPU features cpuID(1, regs); unsigned cpuFeatures = regs[3]; // Logical core count per CPU cpuID(1, regs); unsigned logical = (regs[1] >> 16) & 0xff; unsigned cores = logical; // Determine core count based on vendor if (cpuVendor == "GenuineIntel") { cpuID(4, regs); cores = ((regs[0] >> 26) & 0x3f) + 1; } else if (cpuVendor == "AuthenticAMD") { cpuID(0x80000008, regs); cores = ((regs[2] & 0xff)) + 1; } // Detect hyper-threads bool hyperThreads = cpuFeatures & (1 << 28) && cores < logical; // Display results cout << " logical cpus: " << logical << endl; cout << " cpu cores: " << cores << endl; cout << "hyper-threads: " << (hyperThreads ? "true" : "false") << endl; return 0; }</code>
出力例
異なる Intel システムで実行すると、プログラムは次のように出力します:
Core 2 Duo T7500:
logical cpus: 2 cpu cores: 2 hyper-threads: false
Core 2 Quad Q8400:
logical cpus: 4 cpu cores: 4 hyper-threads: false
Xeon E5520 (デュアル CPU パッケージ):
logical cpus: 16 cpu cores: 8 hyper-threads: true
Pentium 4 3.00GHz:
logical cpus: 2 cpu cores: 1 hyper-threads: true
以上がシステム内の物理プロセッサまたはコアの実際の数を確認するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。