From c18d5d65785b0ebf139e0407bc5cfe59b542f5cc Mon Sep 17 00:00:00 2001 From: Charles Chen Date: Fri, 16 Dec 2022 14:23:46 -0500 Subject: [PATCH] uncomment --- hyperplonk/benches/bench.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hyperplonk/benches/bench.rs b/hyperplonk/benches/bench.rs index ef22090..1a0ea15 100644 --- a/hyperplonk/benches/bench.rs +++ b/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(()) }