Skip to content

Commit

Permalink
fix: add back in larger sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonemo committed Dec 15, 2020
1 parent d4aed8b commit 5616d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage-proofs/core/benches/merkle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ fn merkle_benchmark_sha256(c: &mut Criterion) {

fn merkle_benchmark_poseidon(c: &mut Criterion) {
#[cfg(feature = "big-sector-sizes-bench")]
let params = vec![64];
let params = vec![64, 128, 1024, 1_048_576];
#[cfg(not(feature = "big-sector-sizes-bench"))]
let params = vec![64];
let params = vec![64, 128, 1024];

c.bench(
"merkletree-binary",
Expand Down

0 comments on commit 5616d4e

Please sign in to comment.