• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef BENCHMARK_SYSINFO_H_
2 #define BENCHMARK_SYSINFO_H_
3 
4 namespace benchmark {
5 int NumCPUs();
6 double CyclesPerSecond();
7 bool CpuScalingEnabled();
8 }  // end namespace benchmark
9 
10 #endif  // BENCHMARK_SYSINFO_H_
11