#include "getNumberOfPhysicalCPUCores.h" #include #if defined(OS_LINUX) # include # include #endif #if USE_CPUID # include #endif #include #if defined(OS_LINUX) unsigned getCGroupLimitedCPUCores(unsigned default_cpu_count) { // Try to look at cgroups limit if it is available. auto read_from = [](const char * filename, int default_value) -> int { std::ifstream infile(filename); if (!infile.is_open()) { return default_value; } int idata; if (infile >> idata) return idata; else return default_value; }; unsigned quota_count = default_cpu_count; // Return the number of milliseconds per period process is guaranteed to run. // -1 for no quota int cgroup_quota = read_from("/sys/fs/cgroup/cpu/cpu.cfs_quota_us", -1); int cgroup_period = read_from("/sys/fs/cgroup/cpu/cpu.cfs_period_us", -1); if (cgroup_quota > -1 && cgroup_period > 0) { quota_count = ceil(static_cast(cgroup_quota) / static_cast(cgroup_period)); } // Share number (typically a number relative to 1024) (2048 typically expresses 2 CPUs worth of processing) // -1 for no share setup int cgroup_share = read_from("/sys/fs/cgroup/cpu/cpu.shares", -1); // Convert 1024 to no shares setup if (cgroup_share == 1024) cgroup_share = -1; # define PER_CPU_SHARES 1024 unsigned share_count = default_cpu_count; if (cgroup_share > -1) { share_count = ceil(static_cast(cgroup_share) / static_cast(PER_CPU_SHARES)); } return std::min(default_cpu_count, std::min(share_count, quota_count)); } #endif // OS_LINUX unsigned getNumberOfPhysicalCPUCores() { static const unsigned number = [] { unsigned cpu_count = 0; // start with an invalid num #if USE_CPUID do { cpu_raw_data_t raw_data; cpu_id_t data; /// On Xen VMs, libcpuid returns wrong info (zero number of cores). Fallback to alternative method. /// Also, libcpuid does not support some CPUs like AMD Hygon C86 7151. if (0 != cpuid_get_raw_data(&raw_data) || 0 != cpu_identify(&raw_data, &data) || data.num_logical_cpus == 0) { // Just fallback break; } cpu_count = data.num_cores * data.total_logical_cpus / data.num_logical_cpus; /// Also, libcpuid gives strange result on Google Compute Engine VMs. /// Example: /// num_cores = 12, /// number of physical cores on current CPU socket /// total_logical_cpus = 1, /// total number of logical cores on all sockets /// num_logical_cpus = 24. /// number of logical cores on current CPU socket /// It means two-way hyper-threading (24 / 12), but contradictory, 'total_logical_cpus' == 1. } while (false); #endif /// As a fallback (also for non-x86 architectures) assume there are no hyper-threading on the system. /// (Actually, only Aarch64 is supported). if (cpu_count == 0) cpu_count = std::thread::hardware_concurrency(); #if defined(OS_LINUX) cpu_count = getCGroupLimitedCPUCores(cpu_count); #endif // OS_LINUX return cpu_count; }(); return number; }