以程式設計方式確定機器上的核心數量
在各種計算場景中,了解機器上可用的核心數量至關重要。 C/C 並未為此任務提供獨立於平台的解決方案。但是,有一些特定於平台的方法可以提供此資訊。
C 11(平台無關)
C 11 引入了std::thread::hardware_concurrency () 函數,它提供了一種可移植的方法來獲取數量
#include <thread> const auto processor_count = std::thread::hardware_concurrency();
Pre-C 11(特定於平台)
在C 11 之前的C 中,必須使用特定方法,取決於平台:
Win32
SYSTEM_INFO sysinfo; GetSystemInfo(&sysinfo); int numCPU = sysinfo.dwNumberOfProcessors;
Linux、Solaris、AIX、Mac OS X >=10.4
int numCPU = sysconf(_SC_NPROCESSORS_ONLN);
FreeBSD、MacOS X、NetBSD、 OpenBSD
int mib[4]; int numCPU; std::size_t len = sizeof(numCPU); /* set the mib for hw.ncpu */ mib[0] = CTL_HW; mib[1] = HW_AVAILCPU; // alternatively, try HW_NCPU; /* get the number of CPUs from the system */ sysctl(mib, 2, &numCPU, &len, NULL, 0);
HPUX
int numCPU = mpctl(MPC_GETNUMSPUS, NULL, NULL);
IRIX
int numCPU = sysconf(_SC_NPROC_ONLN);
目標- C(Mac OS X >=10.5或iOS)
NSUInteger a = [[NSProcessInfo processInfo] processorCount]; NSUInteger b = [[NSProcessInfo processInfo] activeProcessorCount];
透過利用這些特定於平台的方法或獨立於C 11 平台的方法,您可以以程式設計方式確定電腦上可用的核心數量,從而使您能夠優化資源利用率和在您的應用程式中實現更好的效能。
以上是如何以程式設計方式確定機器上的核心數量?的詳細內容。更多資訊請關注PHP中文網其他相關文章!