Skip to content

Commit

Permalink
fix: bench name and removed un-necessary benchmark task
Browse files Browse the repository at this point in the history
  • Loading branch information
sifnoc committed Dec 19, 2023
1 parent ba8b83a commit ad59837
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions kzg_prover/benches/kzg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,11 @@ fn bench_kzg<const K: u32, const N_USERS: usize, const N_CURRENCIES: usize, cons

fn criterion_benchmark(c: &mut Criterion) {
bench_kzg::<17, 16, 2, 3>(
"K = 10, N_USER = 16, N_CURRENCIES = 2",
"K = 17, N_USER = 16, N_CURRENCIES = 2",
"../csv/entry_16.csv",
);
bench_kzg::<17, 64, 2, 3>(
"K = 11, N_USER = 64, N_CURRENCIES = 2",
"../csv/entry_64.csv",
);
bench_kzg::<17, 64, 2, 3>(
"K = 12, N_USER = 64, N_CURRENCIES = 2",
"K = 17, N_USER = 64, N_CURRENCIES = 2",
"../csv/entry_64.csv",
);
}
Expand Down

0 comments on commit ad59837

Please sign in to comment.