CMS 3D CMS Logo

Functions | Variables
processor_model.cc File Reference
#include <string>
#include <boost/predef/os.h>
#include "processor_model.h"

Go to the source code of this file.

Functions

std::string read_processor_model ()
 

Variables

const std::string processor_model = read_processor_model()
 

Function Documentation

std::string read_processor_model ( )

Definition at line 18 of file processor_model.cc.

References recoMuon::in, geometryCSVtoXML::line, match(), NULL, listBenchmarks::pattern, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.

19 {
20 #if BOOST_OS_LINUX
21  // on Linux, read the processor model from /proc/cpuinfo
22  static const std::regex pattern("^model name\\s*:\\s*(.*)", std::regex::optimize);
23  std::smatch match;
24 
25  std::ifstream cpuinfo("/proc/cpuinfo", std::ios::in);
27  while (cpuinfo.good()) {
28  std::getline(cpuinfo, line);
29  if (std::regex_match(line, match, pattern)) {
30  return match[1];
31  }
32  }
33 #endif // BOOST_OS_LINUX
34 
35 #if BOOST_OS_BSD || BOOST_OS_MACOS
36  // on BSD and OS X, read the processor model via sysctlbyname("machdep.cpu.brand_string", ...)
38  size_t len;
39  sysctlbyname("machdep.cpu.brand_string", nullptr, & len, NULL, 0);
40  result.resize(len);
41  sysctlbyname("machdep.cpu.brand_string", result.data(), & len, NULL, 0);
42  return result;
43 #endif // BOOST_OS_BSD || BOOST_OS_MACOS
44 
45  return "unknown";
46 }
#define NULL
Definition: scimark2.h:8
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10

Variable Documentation

const std::string processor_model = read_processor_model()