advent-of-code/aoc2022/benches/aoc2022_bench.rs

15 lines
338 B
Rust
Raw Normal View History

2022-12-05 22:57:19 +01:00
use criterion::{criterion_group, criterion_main, Criterion};
use aoc2022::day01;
fn aoc2022_all(c: &mut Criterion) {
c.bench_function("day01", |b| b.iter(|| day01::run().unwrap()));
}
criterion_group! {
name = all_days;
config = Criterion::default().sample_size(200);
targets = aoc2022_all
}
criterion_main!(all_days);