blob: 6df8e0e6b3b4de3ac9907eac644acb7c89f8f3f7 [file] [log] [blame]
#include <benchmark/benchmark.h>
#include <cpuinfo.h>
static void cpuinfo_initialize(benchmark::State& state) {
while (state.KeepRunning()) {
cpuinfo_initialize();
}
}
BENCHMARK(cpuinfo_initialize)->Iterations(1)->Unit(benchmark::kMillisecond);
BENCHMARK_MAIN();