Skip to content

Commit

Permalink
changes for 1.69
Browse files Browse the repository at this point in the history
  • Loading branch information
kevjue committed Feb 8, 2024
1 parent a6d6282 commit 5aed44d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fri/src/two_adic_pcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ impl<F: Field, EF: ExtensionField<F>> PowersReducer<F, EF> {
fn new(base: EF, max_width: usize) -> Self {
let powers: Vec<EF> = base
.powers()
.take(max_width.next_multiple_of(F::Packing::WIDTH))
.take(max_width + (max_width % F::Packing::WIDTH))
.collect();

let transposed_packed: Vec<Vec<F::Packing>> = transpose_vec(
Expand Down

0 comments on commit 5aed44d

Please sign in to comment.