2021: setup boilerplate
This commit is contained in:
parent
ebc57d58b6
commit
d5c85d4a17
9 changed files with 98 additions and 1 deletions
17
aoc2021/aoc2021_bench/Cargo.toml
Normal file
17
aoc2021/aoc2021_bench/Cargo.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[package]
|
||||
name = "aoc2021_bench"
|
||||
version = "0.1.0"
|
||||
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
aoc2021 = { path = "../" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
|
||||
[[bench]]
|
||||
name = "aoc2021_bench"
|
||||
harness = false
|
||||
14
aoc2021/aoc2021_bench/benches/aoc2021_bench.rs
Normal file
14
aoc2021/aoc2021_bench/benches/aoc2021_bench.rs
Normal 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue