tmp commit for benchmark multithread

This commit is contained in:
Charles Chen
2022-12-16 14:17:53 -05:00
parent 44833a0c01
commit 35620b945b

View File

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