Skip to content

Commit

Permalink
fix(evaluation): fix the wrong eval_data of input_evaluator in shuffle (
Browse files Browse the repository at this point in the history
#370)

evaluation: fix the wrong eval_data of input_evaluator in shuffle
  • Loading branch information
nanne007 authored Oct 24, 2024
1 parent 36c8d6d commit eff9c56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_backend/src/plonk/evaluation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ impl<C: CurveAffine> Evaluator<C> {
parallelize(&mut values, |values, start| {
let input_evaluator = &self.shuffles[2 * n];
let shuffle_evaluator = &self.shuffles[2 * n + 1];
let mut eval_data_input = shuffle_evaluator.instance();
let mut eval_data_input = input_evaluator.instance();
let mut eval_data_shuffle = shuffle_evaluator.instance();
for (i, value) in values.iter_mut().enumerate() {
let idx = start + i;
Expand Down

0 comments on commit eff9c56

Please sign in to comment.