Androidonnxfork's picture
Upload folder using huggingface_hub
8b7c501
raw
history blame
No virus
271 Bytes
#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();