Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/reusable_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ jobs:
~/bench_workdir_umf
--umf ${{env.BUILD_DIR}}
--compare baseline
--timeout 3000
${{ inputs.upload_report && '--output-html' || '' }}
${{ inputs.pr_no != 0 && '--output-markdown' || '' }}
${{ inputs.bench_script_params }}
Expand Down
2 changes: 2 additions & 0 deletions benchmark/benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
// Refer to the 'argsName()' function in each component to find detailed descriptions of these arguments.

static void multithreaded(benchmark::internal::Benchmark *benchmark) {
benchmark->Threads(12);
benchmark->Threads(8);
benchmark->Threads(4);
benchmark->Threads(1);
}
Expand Down