add benches for 2015 and 2018
This commit is contained in:
parent
8355f0dcd3
commit
7eca1339d7
5 changed files with 82 additions and 0 deletions
|
|
@ -6,7 +6,24 @@ edition = "2018"
|
|||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
criterion = "0.3"
|
||||
|
||||
[dependencies]
|
||||
|
||||
aoc = { path = "../aoc" }
|
||||
md-5 = "0.8"
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
bench = false
|
||||
|
||||
[[bin]]
|
||||
name = "aoc2015"
|
||||
path = "src/main.rs"
|
||||
bench = false
|
||||
|
||||
[[bench]]
|
||||
name = "bench"
|
||||
harness = false
|
||||
|
|
|
|||
24
aoc2015/benches/bench.rs
Normal file
24
aoc2015/benches/bench.rs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
use criterion::{criterion_group, criterion_main, Criterion};
|
||||
|
||||
use aoc2015::day01;
|
||||
use aoc2015::day02;
|
||||
use aoc2015::day03;
|
||||
use aoc2015::day04;
|
||||
use aoc2015::day05;
|
||||
use aoc2015::day06;
|
||||
|
||||
fn aoc2015_all(c: &mut Criterion) {
|
||||
c.bench_function("day01", |b| b.iter(|| day01::run().unwrap()));
|
||||
c.bench_function("day02", |b| b.iter(|| day02::run().unwrap()));
|
||||
c.bench_function("day03", |b| b.iter(|| day03::run().unwrap()));
|
||||
c.bench_function("day04", |b| b.iter(|| day04::run().unwrap()));
|
||||
c.bench_function("day05", |b| b.iter(|| day05::run().unwrap()));
|
||||
c.bench_function("day06", |b| b.iter(|| day06::run().unwrap()));
|
||||
}
|
||||
|
||||
criterion_group! {
|
||||
name = all_days;
|
||||
config = Criterion::default().sample_size(10);
|
||||
targets = aoc2015_all
|
||||
}
|
||||
criterion_main!(all_days);
|
||||
Loading…
Add table
Add a link
Reference in a new issue