0

我正在使用benchmark::RegisterBenchmark基准测试我的代码。举个简单的例子,我有:

static void BM_Factorial(benchmark::State& state) {
  std::string x = "hello";
  for (auto _ : state) {
    uint64_t fact = 1;
    for(int i=4; i< 100000; i++)
        benchmark::DoNotOptimize(fact *= i);
  }
}

void fun(){
  // Call this multiple times
  benchmark::RegisterBenchmark("timer ", &BM_Factorial);
  // do some work
  benchmark::RunSpecifiedBenchmarks();
}

初始化函数正在做:

 int dummy = 4;
  std::string arg0 = "--help";
  std::string arg1 = "--benchmark_report_aggregates_only=true";
  std::string arg2 = "--benchmark_display_aggregates_only=true";
  std::string arg3 = "--benchmark_repetitions=10000";
  char *args[4] = {
      const_cast<char *>(arg0.c_str()), const_cast<char *>(arg1.c_str()),
      const_cast<char *>(arg2.c_str()), const_cast<char *>(arg3.c_str())};
  benchmark::Initialize(&dummy, args);

我想用一些额外的参数从 fun() 多次调用我的基准函数。为了简单起见,我现在用阶乘替换了基准函数。有了这个,报告的时间总是0。我在这里错过了什么?另一件事是,如果我不写for (auto _ : state)它会引发运行时错误并退出。报告的迭代次数始终为 1000000000。

4

0 回答 0