Benchmark 是 Google

原创
07/16 18:51
阅读数 57

#include <benchmark/benchmark.h> static void BM_SomeFunction

(benchmark::State& state) { // Perform setup here for (auto _ : state)

{ // This code gets timed SomeFunction(); } }

// Register the function as a benchmark

BENCHMARK(BM_SomeFunction); //

Run the benchmark BENCHMARK_MAIN();

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部