Switch 5 to 3 in benchmark.

This commit is contained in:
Sean Bowe 2021-07-13 09:15:30 -06:00
parent 9155cd174b
commit c05ceab04d
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ fn bench_with_k(name: &str, k: u32, c: &mut Criterion) {
) -> Result<(), Error> {
let cs = StandardPlonk::new(config);
for _ in 0..((1 << (self.k - 1)) - 5) {
for _ in 0..((1 << (self.k - 1)) - 3) {
let mut a_squared = None;
let (a0, _, c0) = cs.raw_multiply(&mut layouter, || {
a_squared = self.a.map(|a| a.square());