2021: day02: bench
This commit is contained in:
parent
a776f56915
commit
7fb284bfe3
1 changed files with 2 additions and 0 deletions
|
|
@ -1,9 +1,11 @@
|
||||||
use criterion::{criterion_group, criterion_main, Criterion};
|
use criterion::{criterion_group, criterion_main, Criterion};
|
||||||
|
|
||||||
use aoc2021::day01;
|
use aoc2021::day01;
|
||||||
|
use aoc2021::day02;
|
||||||
|
|
||||||
fn aoc2021_all(c: &mut Criterion) {
|
fn aoc2021_all(c: &mut Criterion) {
|
||||||
c.bench_function("day01", |b| b.iter(|| day01::run().unwrap()));
|
c.bench_function("day01", |b| b.iter(|| day01::run().unwrap()));
|
||||||
|
c.bench_function("day02", |b| b.iter(|| day02::run().unwrap()));
|
||||||
}
|
}
|
||||||
|
|
||||||
criterion_group! {
|
criterion_group! {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue