Skip to content

Commit 0bcdc73

Browse files
committed
add app.fri.log_blowup = 1 check for chunk circuit
1 parent 3c0cdbb commit 0bcdc73

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/integration/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ openvm-native-compiler = { workspace = true, default-features = false }
1919
openvm-native-recursion = { workspace = true, default-features = false }
2020
openvm-native-transpiler = { workspace = true, default-features = false }
2121
openvm-transpiler = { workspace = true, default-features = false }
22+
openvm-stark-sdk.workspace = true
2223

2324
alloy-primitives.workspace = true
2425
tiny-keccak.workspace = true

crates/prover/src/prover/chunk.rs

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ impl ProverType for ChunkProverType {
5050
path_app_config: P,
5151
) -> Result<openvm_sdk::config::AppConfig<openvm_sdk::config::SdkVmConfig>, Error> {
5252
let mut config = read_app_config(path_app_config)?;
53+
assert_eq!(config.app_fri_params.fri_params.log_blowup, 1);
5354
config.app_vm_config.system.config = config
5455
.app_vm_config
5556
.system

0 commit comments

Comments
 (0)