We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
kzg-params-dir
1 parent 6c26719 commit 14be84bCopy full SHA for 14be84b
crates/host-bench/src/lib.rs
@@ -333,7 +333,9 @@ pub async fn run_reth_benchmark<E: StarkFriEngine<SC>>(
333
let app_vk = app_pk.get_app_vk();
334
sdk.verify_app_proof(&app_vk, &proof)?;
335
} else {
336
- let halo2_params_reader = CacheHalo2ParamsReader::new_with_default_params_dir();
+ let halo2_params_reader = CacheHalo2ParamsReader::new(
337
+ args.benchmark.kzg_params_dir.as_ref().expect("must set --kzg-params-dir"),
338
+ );
339
let mut agg_config = args.benchmark.agg_config();
340
agg_config.agg_stark_config.max_num_user_public_values =
341
VmConfig::<BabyBear>::system(&vm_config).num_public_values;
0 commit comments