mirror of https://github.com/vacp2p/zerokit.git
22 lines
676 B
Rust
22 lines
676 B
Rust
use criterion::{criterion_group, criterion_main, Criterion};
|
|
use rln::circuit::{zkey_from_raw, ZKEY_BYTES};
|
|
|
|
// Depending on the key type (enabled by the `--features arkzkey` flag)
|
|
// the upload speed from the `rln_final.zkey` or `rln_final.arkzkey` file is calculated
|
|
pub fn key_load_benchmark(c: &mut Criterion) {
|
|
let zkey = ZKEY_BYTES.to_vec();
|
|
|
|
c.bench_function("zkey::zkey_from_raw", |b| {
|
|
b.iter(|| {
|
|
let _ = zkey_from_raw(&zkey);
|
|
})
|
|
});
|
|
}
|
|
|
|
criterion_group! {
|
|
name = benches;
|
|
config = Criterion::default().measurement_time(std::time::Duration::from_secs(250));
|
|
targets = key_load_benchmark
|
|
}
|
|
criterion_main!(benches);
|