git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@286029 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
211 B
C++
11 lines
211 B
C++
#ifndef BENCHMARK_SYSINFO_H_
|
|
#define BENCHMARK_SYSINFO_H_
|
|
|
|
namespace benchmark {
|
|
int NumCPUs();
|
|
double CyclesPerSecond();
|
|
bool CpuScalingEnabled();
|
|
} // end namespace benchmark
|
|
|
|
#endif // BENCHMARK_SYSINFO_H_
|