Skip to content

Commit

Permalink
Revert "fix failing-to-compile test suite in valida"
Browse files Browse the repository at this point in the history
This reverts commit ae450f9.
  • Loading branch information
morganthomas committed Apr 30, 2024
1 parent 3c89583 commit 7d615d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interpolation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ where
let s = diff_inv * subgroup_i;
row_i.into_iter().map(|y_i| s * y_i).collect()
})
.reduce(sum_vecs)
.expect("Expected nonempty sum");
.fold_chunks(64, || vec![EF::zero(); width], sum_vecs)
.reduce(|| vec![EF::zero(); width], sum_vecs);

let zerofier = two_adic_coset_zerofier::<EF>(log_height, EF::from_base(shift), point);
let denominator = F::from_canonical_usize(height) * shift.exp_u64(height as u64 - 1);
Expand Down

0 comments on commit 7d615d3

Please sign in to comment.