您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
211 B

3 个月前
  1. #include "benchmark/benchmark.h"
  2. void BM_empty(benchmark::State& state) {
  3. for (auto _ : state) {
  4. auto iterations = state.iterations();
  5. benchmark::DoNotOptimize(iterations);
  6. }
  7. }
  8. BENCHMARK(BM_empty);