ハイパースレッディングを考慮した物理プロセッサとコア数の決定
マルチスレッドを最適化するには、物理プロセッサとコアの数を検出することが重要ですアプリケーションを効率的に実行できます。これらの数を正確に判断するには、有効になっている可能性のあるハイパースレッディングの依存関係を考慮してください。
ステップバイステップのプロセス:
物理コア数の区別:
C 実装:
次の C プログラムは、これらの手順を例示します。
<code class="c++">#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; cout << " logical cpus: " << logical << endl; unsigned cores = logical; if (cpuVendor == "GenuineIntel") { // Get DCP cache info cpuID(4, regs); cores = ((regs[0] >> 26) & 0x3f) + 1; } else if (cpuVendor == "AuthenticAMD") { // Get NC: Number of CPU cores - 1 cpuID(0x80000008, regs); cores = ((unsigned)(regs[2] & 0xff)) + 1; } cout << " cpu cores: " << cores << endl; // Detect hyper-threads bool hyperThreads = cpuFeatures & (1 << 28) && cores < logical; cout << "hyper-threads: " << (hyperThreads ? "true" : "false") << endl; return 0; }</code>
これらの手順を実行し、提供されている C プログラムを利用することで、開発者は、さまざまなプラットフォームにわたるハイパースレッディング構成の微妙な違いを考慮して、物理プロセッサとコアの数を正確に決定できます。
以上がハイパースレッディング構成を考慮して、物理プロセッサとコアの数を正確に判断するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。