Add benches to swap_or_not_shuffle
This commit is contained in:
parent
87ea95ce35
commit
0fe3a81c9e
@ -4,12 +4,17 @@ version = "0.1.0"
|
|||||||
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "benches"
|
||||||
|
harness = false
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
criterion = "0.2"
|
||||||
|
yaml-rust = "0.4.2"
|
||||||
|
hex = "0.3"
|
||||||
|
ethereum-types = "0.5"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "0.4"
|
bytes = "0.4"
|
||||||
hashing = { path = "../hashing" }
|
hashing = { path = "../hashing" }
|
||||||
int_to_bytes = { path = "../int_to_bytes" }
|
int_to_bytes = { path = "../int_to_bytes" }
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
yaml-rust = "0.4.2"
|
|
||||||
hex = "0.3"
|
|
||||||
ethereum-types = "0.5"
|
|
||||||
|
62
eth2/utils/swap_or_not_shuffle/benches/benches.rs
Normal file
62
eth2/utils/swap_or_not_shuffle/benches/benches.rs
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
use criterion::Criterion;
|
||||||
|
use criterion::{black_box, criterion_group, criterion_main, Benchmark};
|
||||||
|
use swap_or_not_shuffle::get_permutated_index;
|
||||||
|
|
||||||
|
const SHUFFLE_ROUND_COUNT: u8 = 90;
|
||||||
|
|
||||||
|
fn shuffle_list(seed: &[u8], list_size: usize) -> Vec<usize> {
|
||||||
|
let mut output = Vec::with_capacity(list_size);
|
||||||
|
for i in 0..list_size {
|
||||||
|
output.push(get_permutated_index(i, list_size, seed, SHUFFLE_ROUND_COUNT).unwrap());
|
||||||
|
}
|
||||||
|
output
|
||||||
|
}
|
||||||
|
|
||||||
|
fn shuffles(c: &mut Criterion) {
|
||||||
|
c.bench_function("single swap", move |b| {
|
||||||
|
let seed = vec![42; 32];
|
||||||
|
b.iter(|| black_box(get_permutated_index(0, 10, &seed, SHUFFLE_ROUND_COUNT)))
|
||||||
|
});
|
||||||
|
|
||||||
|
c.bench_function("whole list of size 8", move |b| {
|
||||||
|
let seed = vec![42; 32];
|
||||||
|
b.iter(|| black_box(shuffle_list(&seed, 8)))
|
||||||
|
});
|
||||||
|
|
||||||
|
c.bench(
|
||||||
|
"whole list shuffle",
|
||||||
|
Benchmark::new("8 elements", move |b| {
|
||||||
|
let seed = vec![42; 32];
|
||||||
|
b.iter(|| black_box(shuffle_list(&seed, 8)))
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
c.bench(
|
||||||
|
"whole list shuffle",
|
||||||
|
Benchmark::new("16 elements", move |b| {
|
||||||
|
let seed = vec![42; 32];
|
||||||
|
b.iter(|| black_box(shuffle_list(&seed, 16)))
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
c.bench(
|
||||||
|
"whole list shuffle",
|
||||||
|
Benchmark::new("512 elements", move |b| {
|
||||||
|
let seed = vec![42; 32];
|
||||||
|
b.iter(|| black_box(shuffle_list(&seed, 512)))
|
||||||
|
})
|
||||||
|
.sample_size(10),
|
||||||
|
);
|
||||||
|
|
||||||
|
c.bench(
|
||||||
|
"whole list shuffle",
|
||||||
|
Benchmark::new("16384 elements", move |b| {
|
||||||
|
let seed = vec![42; 32];
|
||||||
|
b.iter(|| black_box(shuffle_list(&seed, 16_384)))
|
||||||
|
})
|
||||||
|
.sample_size(10),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
criterion_group!(benches, shuffles,);
|
||||||
|
criterion_main!(benches);
|
Loading…
Reference in New Issue
Block a user