Skip to content

Commit

Permalink
fix: stash code
Browse files Browse the repository at this point in the history
  • Loading branch information
eigmax committed Nov 26, 2023
1 parent c75ace2 commit eed8819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpu/memio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,13 +264,13 @@ fn eval_packed_load<P: PackedField>(
* (mem - mem_val_0_0) * (mem - mem_val_0_1)
* (mem - mem_val_1_0) * (mem - mem_val_1_1));
}
*/

// Disable remaining memory channels, if any.
// Note: SC needs 5 channel
for &channel in &lv.mem_channels[5..NUM_GP_CHANNELS] {
yield_constr.constraint(filter * channel.used);
}
*/
}

fn eval_ext_circuit_load<F: RichField + Extendable<D>, const D: usize>(
Expand Down Expand Up @@ -538,13 +538,13 @@ fn eval_ext_circuit_load<F: RichField + Extendable<D>, const D: usize>(
let mult = builder.mul_many_extension([filter, lv.general.io().micro_op[7], diff1, diff2, diff3, diff4]);
yield_constr.constraint(builder, mult);
}
*/

// Disable remaining memory channels, if any.
for &channel in &lv.mem_channels[5..NUM_GP_CHANNELS] {
let constr = builder.mul_extension(filter, channel.used);
yield_constr.constraint(builder, constr);
}
*/
}

fn eval_packed_store<P: PackedField>(
Expand Down

0 comments on commit eed8819

Please sign in to comment.