首页 > 后端开发 > C++ > 正文

如何确定系统中物理处理器或内核的实际数量?

Mary-Kate Olsen
发布: 2024-11-01 04:28:02
原创
507 人浏览过

How to Determine the Actual Number of Physical Processors or Cores in a System?

确定物理处理器/核心数量

为了获得最佳性能,多线程应用程序需要精确的物理处理器或核心数量。检测逻辑处理器的数量是不够的,特别是考虑到超线程,其中多个逻辑线程在单个物理核心上运行。

检测超线程支持和激活

要准确计数对于物理处理器,确定是否支持并启用超线程至关重要。这需要检查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
    登录后复制
  • 奔腾 4 3.00GHz:

    logical cpus: 2
      cpu cores: 1
    hyper-threads: true
    登录后复制

以上是如何确定系统中物理处理器或内核的实际数量?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!