We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eae8d63 commit e316fdcCopy full SHA for e316fdc
.github/workflows/reusable_benchmarks.yml
@@ -137,6 +137,7 @@ jobs:
137
~/bench_workdir_umf
138
--umf ${{env.BUILD_DIR}}
139
--compare baseline
140
+ --timeout 3000
141
${{ inputs.upload_report && '--output-html' || '' }}
142
${{ inputs.pr_no != 0 && '--output-markdown' || '' }}
143
${{ 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