Reduce PoW bits

The PoW search was taking significant time sometimes.
This commit is contained in:
Daniel Lubarov 2021-08-17 23:55:16 -07:00
parent 21bdc6b380
commit aae2c9d16f
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ fn bench_prove<F: Field + Extendable<D>, const D: usize>() -> Result<()> {
zero_knowledge: false,
cap_height: 1,
fri_config: FriConfig {
proof_of_work_bits: 20,
proof_of_work_bits: 15,
reduction_arity_bits: vec![2, 2, 2, 2, 2, 2],
num_query_rounds: 35,
},

View File

@ -427,7 +427,7 @@ mod tests {
zero_knowledge: false,
cap_height: 3,
fri_config: FriConfig {
proof_of_work_bits: 20,
proof_of_work_bits: 15,
reduction_arity_bits: vec![3, 3, 3],
num_query_rounds: 27,
},