2021: setup boilerplate

This commit is contained in:
Antoine Martin 2021-11-25 16:49:52 +01:00
parent ebc57d58b6
commit d5c85d4a17
9 changed files with 98 additions and 1 deletions

View file

@ -0,0 +1,14 @@
use criterion::{criterion_group, criterion_main, Criterion};
use aoc2021::day00;
fn aoc2021_all(c: &mut Criterion) {
c.bench_function("day00", |b| b.iter(|| day00::run().unwrap()));
}
criterion_group! {
name = all_days;
config = Criterion::default().sample_size(200);
targets = aoc2021_all
}
criterion_main!(all_days);