Skip to content

Commit

Permalink
no vk + no fixed shapes
Browse files Browse the repository at this point in the history
  • Loading branch information
umadayal committed Oct 9, 2024
1 parent 01a7581 commit 069cc25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,16 @@ impl<C: SP1ProverComponents> SP1Prover<C> {

let core_shape_config = env::var("FIX_CORE_SHAPES")
.map(|v| v.eq_ignore_ascii_case("true"))
.unwrap_or(true)
.unwrap_or(false)
.then_some(CoreShapeConfig::default());

let recursion_shape_config = env::var("FIX_RECURSION_SHAPES")
.map(|v| v.eq_ignore_ascii_case("true"))
.unwrap_or(true)
.unwrap_or(false)
.then_some(RecursionShapeConfig::default());

let vk_verification =
env::var("VERIFY_VK").map(|v| v.eq_ignore_ascii_case("true")).unwrap_or(true);
env::var("VERIFY_VK").map(|v| v.eq_ignore_ascii_case("true")).unwrap_or(false);

tracing::info!("vk verification: {}", vk_verification);

Expand Down

0 comments on commit 069cc25

Please sign in to comment.