Skip to content

Commit fdb781e

Browse files
committed
Hold off selector for e2e test context
1 parent 6793374 commit fdb781e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/zkvm_verifier/verifier.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,13 +1019,13 @@ pub fn verify_gkr_circuit<C: Config>(
10191019
}
10201020
);
10211021
});
1022-
1022+
10231023
let rotation_exprs_len = layer.rotation_exprs.1.len();
10241024
let alpha_pows = gen_alpha_pows(builder, &mut challenger, Usize::from(layer.exprs.len() + rotation_exprs_len * ROTATION_OPENING_COUNT));
1025-
10261025
let sigma: Ext<C::F, C::EF> = builder.constant(C::EF::ZERO);
10271026
let alpha_idx: Var<C::N> = Var::uninit(builder);
10281027
builder.assign(&alpha_idx, C::N::from_canonical_usize(0));
1028+
10291029
builder.range(0, eval_and_dedup_points.len()).for_each(|idx_vec, builder| {
10301030
let ClaimAndPoint {
10311031
evals,
@@ -1051,6 +1051,7 @@ pub fn verify_gkr_circuit<C: Config>(
10511051
&mut unipoly_extrapolator
10521052
);
10531053

1054+
/* _debug: wait for e2e test context
10541055
layer.out_sel_and_eval_exprs.iter().enumerate().for_each(|(idx, (sel_type, _))| {
10551056
let out_point = builder.get(&eval_and_dedup_points, idx).point.fs;
10561057
@@ -1064,6 +1065,7 @@ pub fn verify_gkr_circuit<C: Config>(
10641065
layer.n_witin,
10651066
);
10661067
});
1068+
*/
10671069

10681070
let empty_arr: Array<C, Ext<C::F, C::EF>> = builder.dyn_array(0);
10691071
let got_claim = eval_ceno_expr_with_instance(

0 commit comments

Comments
 (0)