You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
7 months ago
|
use criterion::{criterion_group, BatchSize, Criterion};
|
||
|
|
||
|
fn some_benchmark(c: &mut Criterion) {
|
||
|
let mut group = c.benchmark_group("overhead");
|
||
|
group.bench_function("iter", |b| b.iter(|| 1));
|
||
|
group.bench_function("iter_with_setup", |b| b.iter_with_setup(|| (), |_| 1));
|
||
|
group.bench_function("iter_with_large_setup", |b| {
|
||
|
b.iter_with_large_setup(|| (), |_| 1)
|
||
|
});
|
||
|
group.bench_function("iter_with_large_drop", |b| b.iter_with_large_drop(|| 1));
|
||
|
group.bench_function("iter_batched_small_input", |b| {
|
||
|
b.iter_batched(|| (), |_| 1, BatchSize::SmallInput)
|
||
|
});
|
||
|
group.bench_function("iter_batched_large_input", |b| {
|
||
|
b.iter_batched(|| (), |_| 1, BatchSize::LargeInput)
|
||
|
});
|
||
|
group.bench_function("iter_batched_per_iteration", |b| {
|
||
|
b.iter_batched(|| (), |_| 1, BatchSize::PerIteration)
|
||
|
});
|
||
|
group.bench_function("iter_batched_ref_small_input", |b| {
|
||
|
b.iter_batched_ref(|| (), |_| 1, BatchSize::SmallInput)
|
||
|
});
|
||
|
group.bench_function("iter_batched_ref_large_input", |b| {
|
||
|
b.iter_batched_ref(|| (), |_| 1, BatchSize::LargeInput)
|
||
|
});
|
||
|
group.bench_function("iter_batched_ref_per_iteration", |b| {
|
||
|
b.iter_batched_ref(|| (), |_| 1, BatchSize::PerIteration)
|
||
|
});
|
||
|
group.finish();
|
||
|
}
|
||
|
|
||
|
criterion_group!(benches, some_benchmark);
|