Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add groupby_max multi-threaded benchmark #16154

Merged
Prev Previous commit
Next Next commit
Reduce default number of aggregations
  • Loading branch information
srinivasyadav18 committed Jul 10, 2024
commit 8e08aa438c279b0f10ebd1b750e565ef7b4f1347
2 changes: 1 addition & 1 deletion cpp/benchmarks/groupby/group_max_multithreaded.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ NVBENCH_BENCH_TYPES(bench_groupby_max_multithreaded,
.add_int64_axis("cardinality", {0})
.add_int64_power_of_two_axis("num_rows", {12, 18})
.add_float64_axis("null_probability", {0, 0.1, 0.9})
.add_int64_axis("num_aggregations", {1, 2, 4, 8})
.add_int64_axis("num_aggregations", {1})
.add_int64_axis("num_threads", {1, 2, 4, 8});