Skip to content

Commit

Permalink
perf(circuit_definitions): adjust proof configs for compression circu…
Browse files Browse the repository at this point in the history
…its to improve proving speed
  • Loading branch information
robik75 committed Nov 19, 2024
1 parent d65309e commit 733e63d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl ProofCompressionFunction for CompressionMode4 {

fn proof_config_for_compression_step() -> ProofConfig {
ProofConfig {
fri_lde_factor: 2048,
fri_lde_factor: 1024,
merkle_tree_cap_size: 256,
fri_folding_schedule: None,
security_level: crate::L1_SECURITY_BITS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ impl ProofCompressionFunction for CompressionMode5ForWrapper {

fn proof_config_for_compression_step() -> ProofConfig {
ProofConfig {
fri_lde_factor: 4096,
fri_lde_factor: 512,
merkle_tree_cap_size: 8,
fri_folding_schedule: None,
security_level: crate::L1_SECURITY_BITS,
pow_bits: 8,
pow_bits: 26,
}
}

Expand Down

0 comments on commit 733e63d

Please sign in to comment.