確定實體處理器/核心數量
為了獲得最佳效能,多執行緒應用程式需要精確的實體處理器或核心數量。檢測邏輯處理器的數量是不夠的,特別是考慮到超線程,其中多個邏輯線程在單個物理核心上運行。
偵測超執行緒支援和啟動
要準確計數對於實體處理器,決定是否支援並啟用超執行緒至關重要。這需要檢查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
logical cpus: 16 cpu cores: 8 hyper-threads: true
logical cpus: 2 cpu cores: 1 hyper-threads: true
以上是如何確定係統中實體處理器或核心的實際數量?的詳細內容。更多資訊請關注PHP中文網其他相關文章!