Skip to content

Commit

Permalink
chore: Increase DEGREE_BITS_RANGE
Browse files Browse the repository at this point in the history
After SHA256 precompile was introduced, the DEGREE_BITS_RANGE value was
increased to 12 elements.
zkMIPS/zkm#222
  • Loading branch information
Syndamia committed Feb 21, 2025
1 parent 155221d commit b33150e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/local/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ use zkm_prover::cpu::kernel::assembler::segment_kernel;
use zkm_prover::fixed_recursive_verifier::AllRecursiveCircuits;
use zkm_prover::generation::state::{AssumptionReceipts, Receipt};

const DEGREE_BITS_RANGE: [Range<usize>; 8] =
[10..21, 12..22, 11..21, 8..21, 6..21, 6..21, 6..21, 13..23];
const DEGREE_BITS_RANGE: [Range<usize>; 12] =
[10..21, 12..22, 11..21, 8..21, 6..10, 6..10, 6..16, 6..16, 6..16, 6..16, 6..21, 13..23];

const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down

0 comments on commit b33150e

Please sign in to comment.