Skip to content

Commit

Permalink
Merge pull request #2385 from o1-labs/volhovm/porting-ivc-add-part-7
Browse files Browse the repository at this point in the history
[#2313] Porting IVC+ADD 7: Remove double column writing for ECAdd
  • Loading branch information
dannywillems authored Jul 9, 2024
2 parents c0b09b0 + 165fd3e commit 9e1ad80
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ivc/src/ivc/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -666,10 +666,6 @@ pub fn process_ecadds<F, Ff, Env, const N_COL_TOTAL: usize, const N_CHALS: usize
};

env.write_column(IVCColumn::Block4Coeff, &Env::constant(coeff));
write_column_array_const(env, &xp_limbs, IVCColumn::Block4Input1);
write_column_array_const(env, &yp_limbs, |i| IVCColumn::Block4Input1(i + 4));
write_column_array_const(env, &xq_limbs, IVCColumn::Block4Input2);
write_column_array_const(env, &yq_limbs, |i| IVCColumn::Block4Input2(i + 4));

// TODO These two should be used when RAMLookups are enabled.
env.write_column(IVCColumn::Block4Input2AccessTime, &Env::constant(F::zero()));
Expand Down

0 comments on commit 9e1ad80

Please sign in to comment.