We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9a93b20 + e316fdc commit 4c54366Copy full SHA for 4c54366
.github/workflows/reusable_benchmarks.yml
@@ -142,6 +142,7 @@ jobs:
142
~/bench_workdir_umf
143
--umf ${{env.BUILD_DIR}}
144
--compare baseline
145
+ --timeout 3000
146
${{ inputs.upload_report && '--output-html' || '' }}
147
${{ inputs.pr_no != 0 && '--output-markdown' || '' }}
148
${{ inputs.bench_script_params }}
benchmark/benchmark.cpp
@@ -31,6 +31,8 @@
31
// Refer to the 'argsName()' function in each component to find detailed descriptions of these arguments.
32
33
static void multithreaded(benchmark::internal::Benchmark *benchmark) {
34
+ benchmark->Threads(12);
35
+ benchmark->Threads(8);
36
benchmark->Threads(4);
37
benchmark->Threads(1);
38
}
0 commit comments