Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Append "_tg" to benchmark name in runner.bench_async_func call
  • Loading branch information
itamaro committed May 28, 2023
commit 1d6bf0625c76e6520d4638036b635f43bbf6e4dd
Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,7 @@ def add_parser_args(parser):

async_tree_class = BENCHMARKS[benchmark]
async_tree = async_tree_class(use_task_groups=args.task_groups)
runner.bench_async_func(f"async_tree_{benchmark}", async_tree.run)
bench_name = f"async_tree_{benchmark}"
if args.task_groups:
bench_name += "_tg"
runner.bench_async_func(bench_name, async_tree.run)