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

19 lines
516 B
Rust
Raw Permalink Normal View History

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