Skip to content

Commit

Permalink
chore(bench): make name more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
dqhl76 committed Nov 4, 2024
1 parent 37f7bca commit e269079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/benches/types/concurrent_tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub fn bench_concurrent_tasks(c: &mut Criterion) {
let mut group = c.benchmark_group("bench_concurrent_tasks");

for concurrent in [1, 2, 4, 8, 16] {
group.bench_with_input(concurrent.to_string(), &concurrent, |b, concurrent| {
group.bench_with_input(format!("concurrent {}",concurrent), &concurrent, |b, concurrent| {
b.to_async(&*TOKIO).iter_batched(
|| {
ConcurrentTasks::new(Executor::new(), *concurrent, |()| {
Expand Down

0 comments on commit e269079

Please sign in to comment.