Skip to content

Commit 4c54366

Browse files
Merge pull request #1166 from lplewa/benchmarks_threads
increase number of threads in benchmarks
2 parents 9a93b20 + e316fdc commit 4c54366

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/reusable_benchmarks.yml

+1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ jobs:
142142
~/bench_workdir_umf
143143
--umf ${{env.BUILD_DIR}}
144144
--compare baseline
145+
--timeout 3000
145146
${{ inputs.upload_report && '--output-html' || '' }}
146147
${{ inputs.pr_no != 0 && '--output-markdown' || '' }}
147148
${{ inputs.bench_script_params }}

benchmark/benchmark.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
// Refer to the 'argsName()' function in each component to find detailed descriptions of these arguments.
3232

3333
static void multithreaded(benchmark::internal::Benchmark *benchmark) {
34+
benchmark->Threads(12);
35+
benchmark->Threads(8);
3436
benchmark->Threads(4);
3537
benchmark->Threads(1);
3638
}

0 commit comments

Comments
 (0)