Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Feb 7, 2025
1 parent 32ba951 commit ad0f6a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/katana/core/benches/commit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ fn commit_big(c: &mut Criterion) {
DbProvider::new_ephemeral(),
);

c.bench_function("Commit.Small.Parallel", |b| {
c.bench_function("Serial", |b| {
b.iter_batched(|| block.clone(), |input| commit(black_box(input)), BatchSize::SmallInput);
});

c.bench_function("Commit.Big.Parallel", |b| {
c.bench_function("Parallel", |b| {
b.iter_batched(
|| block.clone(),
|input| commit_parallel(black_box(input)),
Expand Down

0 comments on commit ad0f6a6

Please sign in to comment.