我正在使用 benchmark 库来对一些代码进行基准测试。我想在一次调用实际基准代码之前调用一个设置方法,而不是每次都重复,对于多个基准方法调用..例如:

static void BM_SomeFunction(benchmark::State& state) {
  // Perform setup here
  for (auto _ : state) {
    // This code gets timed
  }
}

正如我们所看到的,设置代码将在此处多次调用,适用于我指定的范围。我确实看过夹具测试。但我的问题是可以在不使用夹具测试的情况下完成。如果是,那么我们该怎么做呢?

最佳答案

据我所知,该函数被多次调用,因为 benchmark 动态决定基准测试需要运行多少次才能获得可靠的结果。如果您不想使用装置,则有多种解决方法。您可以使用全局或静态类成员 bool 来检查 setup 函数是否已经被调用(不要忘记在 setup 例程运行后设置它)。另一种可能性是使用在其构造函数中调用 setup 方法的单例:

class Setup
{
    Setup()
    {
        // call your setup function
        std::cout << "singleton ctor called only once in the whole program" << std::endl;
    }

public:
    static void PerformSetup()
    {
        static Setup setup;
    }
};

static void BM_SomeFunction(benchmark::State& state) {
  Setup::PerformSetup()
  for (auto _ : state) {
    // ...
  }
}

但是,fixtures 使用起来非常简单,并且是为此类用例而设计的。

定义一个继承自 benchmark::Fixture 的夹具类:

class MyFixture : public benchmark::Fixture
{
public:
    // add members as needed

    MyFixture()
    {
        std::cout << "Ctor only called once per fixture testcase hat uses it" << std::endl;
        // call whatever setup functions you need in the fixtures ctor
    }
};

然后使用 BENCHMARK_F 宏在测试中使用您的夹具。

BENCHMARK_F(MyFixture, TestcaseName)(benchmark::State& state)
{
    std::cout << "Benchmark function called more than once" << std::endl;
    for (auto _ : state)
    {
        //run your benchmark
    }
}

但是,如果您在多个基准测试中使用该装置,该 ctor 将被多次调用。如果您确实需要在整个基准测试期间只调用某个设置函数一次,您可以使用 Singleton 或 static bool 来解决这个问题,如前所述。也许 benchmark 也有一个内置的解决方案,但我不知道。

替代单例

如果你不喜欢单例类,你也可以使用这样的全局函数:

void Setup()
{
    static bool callSetup = true;
    if (callSetup)
    {
        // Call your setup function
    }
    callSetup = false;
}

问候

关于c++ - Google Benchmark 自定义设置和拆卸方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58342860/

10-11 19:18