web-dev-qa-db-ja.com

Cを使用してLinuxのCPU数を取得する方法は?

Linuxで使用可能なCPUの数を取得するAPIはありますか?つまり、/ proc/cpuinfoまたは他のsys-nodeファイルを使用せずに...

私はsched.hを使用してこの実装を見つけました:

int GetCPUCount()
{
 cpu_set_t cs;
 CPU_ZERO(&cs);
 sched_getaffinity(0, sizeof(cs), &cs);

 int count = 0;
 for (int i = 0; i < 8; i++)
 {
  if (CPU_ISSET(i, &cs))
   count++;
 }
 return count;
}

しかし、一般的なライブラリを使用するより高いレベルはありませんか?

52
Treviño
#include <stdio.h>
#include <sys/sysinfo.h>

int main(int argc, char *argv[])
{
    printf("This system has %d processors configured and "
        "%d processors available.\n",
        get_nprocs_conf(), get_nprocs());
    return 0;
}

https://linux.die.net/man/3/get_nprocs

#include <unistd.h>
long number_of_processors = sysconf(_SC_NPROCESSORS_ONLN);
74
chrisaycock

このコード( here から抜粋)は、Windowsと* NIXプラットフォームの両方で動作するはずです。

#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <unistd.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>


int main() {
  long nprocs = -1;
  long nprocs_max = -1;
#ifdef _WIN32
#ifndef _SC_NPROCESSORS_ONLN
SYSTEM_INFO info;
GetSystemInfo(&info);
#define sysconf(a) info.dwNumberOfProcessors
#define _SC_NPROCESSORS_ONLN
#endif
#endif
#ifdef _SC_NPROCESSORS_ONLN
  nprocs = sysconf(_SC_NPROCESSORS_ONLN);
  if (nprocs < 1)
  {
    fprintf(stderr, "Could not determine number of CPUs online:\n%s\n", 
strerror (errno));
    exit (EXIT_FAILURE);
  }
  nprocs_max = sysconf(_SC_NPROCESSORS_CONF);
  if (nprocs_max < 1)
  {
    fprintf(stderr, "Could not determine number of CPUs configured:\n%s\n", 
strerror (errno));
    exit (EXIT_FAILURE);
  }
  printf ("%ld of %ld processors online\n",nprocs, nprocs_max);
  exit (EXIT_SUCCESS);
#else
  fprintf(stderr, "Could not determine number of CPUs");
  exit (EXIT_FAILURE);
#endif
}
20
Vikram.exe

/proc/cpuinfoの使用は、最もクリーンで移植性の高いソリューションです。オープンが失敗した場合、1 cpuまたは2 cpusを想定できます。マイクロ最適化(たとえば、実行する理想的なスレッド数の選択)以外の目的でcpusの数を知ることに依存するコードは、ほとんど確実に何かおかしいことをしています。

_SC_NPROCESSORS_ONLNソリューションは非標準(glibc固有)sysconf拡張に依存しています。これは/proc(すべてのLinuxシステムに/procがありますが、いくつかは非glibc libcs​​または_SC_NPROCESSORS_ONLNを欠くglibcの古いバージョンを持っています。

13
R..

最初に言及したsched_affinity()バージョンは、特定のプロセスで使用可能なCPUのみをカウントするため、_/proc/cpuinfo_や__SC_NPROCESSORS_ONLN_よりも優れています(一部はsched_setaffinity()外部プロセスによって呼び出されます)。唯一の変更点は、ループで_CPU_ISSET_を行う代わりにCPU_COUNT()を使用することです。

11
RCL

個人的に最近のIntel CPUのために私はこれを使用します:

int main()
{
unsigned int eax=11,ebx=0,ecx=1,edx=0;

asm volatile("cpuid"
        : "=a" (eax),
          "=b" (ebx),
          "=c" (ecx),
          "=d" (edx)
        : "0" (eax), "2" (ecx)
        : );

printf("Cores: %d\nThreads: %d\nActual thread: %d\n",eax,ebx,edx);
}

出力:

Cores: 4
Threads: 8
Actual thread: 1

または、より簡潔に:

#include <stdio.h>

int main()
{
unsigned int ncores=0,nthreads=0,ht=0;

asm volatile("cpuid": "=a" (ncores), "=b" (nthreads) : "a" (0xb), "c" (0x1) : );

ht=(ncores!=nthreads);

printf("Cores: %d\nThreads: %d\nHyperThreading: %s\n",ncores,nthreads,ht?"Yes":"No");

return 0;
}

出力:

Cores: 4
Threads: 8
HyperThreading: Yes
1
Zibri

Sysファイルシステムでcpu *ディレクトリをスキャンする別の方法:

#include<stdio.h>
#include <dirent.h>
#include <errno.h>
#define LINUX_SYS_CPU_DIRECTORY "/sys/devices/system/cpu"

int main() {
   int cpu_count = 0;
   DIR *sys_cpu_dir = opendir(LINUX_SYS_CPU_DIRECTORY);
   if (sys_cpu_dir == NULL) {
       int err = errno;
       printf("Cannot open %s directory, error (%d).\n", LINUX_SYS_CPU_DIRECTORY, strerror(err));
       return -1;
   }
   const struct dirent *cpu_dir;
   while((cpu_dir = readdir(sys_cpu_dir)) != NULL) {
       if (fnmatch("cpu[0-9]*", cpu_dir->d_name, 0) != 0)
       {
          /* Skip the file which does not represent a CPU */
          continue;
       }
       cpu_count++;
   }
   printf("CPU count: %d\n", cpu_count);
   return 0;
}
0