more benchmarking

This commit is contained in:
Maximilian Keßler 2022-04-16 14:22:13 +02:00
parent 715b578e87
commit fe5609fb0d

View File

@ -18,7 +18,7 @@ static void BM_area_computation(benchmark::State& state) {
}
// add benchmark
BENCHMARK(BM_area_computation)->ArgsProduct({benchmark::CreateRange(1<<4,1<<22,4),{1<<20}})->Threads(4)->Complexity(benchmark::oNLogN);
BENCHMARK(BM_area_computation)->ArgsProduct({benchmark::CreateRange(1<<4,1<<24,4),{1<<20}})->Threads(8)->Complexity(benchmark::oNLogN);
// run benchmark as main()
BENCHMARK_MAIN();