Browse Source

tmp commit for benchmark multithread

main
Charles Chen 1 year ago
parent
commit
35620b945b
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      hyperplonk/benches/bench.rs

+ 7
- 7
hyperplonk/benches/bench.rs

@ -37,15 +37,15 @@ fn main() -> Result<(), HyperPlonkErrors> {
},
}
};
bench_jellyfish_plonk(&pcs_srs, thread)?;
println!();
// bench_jellyfish_plonk(&pcs_srs, thread)?;
// println!();
bench_vanilla_plonk(&pcs_srs, thread)?;
println!();
for degree in MIN_CUSTOM_DEGREE..=MAX_CUSTOM_DEGREE {
bench_high_degree_plonk(&pcs_srs, degree, thread)?;
println!();
}
println!();
// for degree in MIN_CUSTOM_DEGREE..=MAX_CUSTOM_DEGREE {
// bench_high_degree_plonk(&pcs_srs, degree, thread)?;
// println!();
// }
// println!();
Ok(())
}

Loading…
Cancel
Save