Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fast Coset Extrapolate #212

Merged
merged 18 commits into from
May 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: Happify clippy
  • Loading branch information
aszepieniec committed May 22, 2024
commit ba014ce2ea653421fd502274961e1c5ad1d940c2
3 changes: 2 additions & 1 deletion twenty-first/benches/extrapolation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ fn iterative_barycentric(
.collect_vec()
}

#[allow(clippy::type_complexity)]
aszepieniec marked this conversation as resolved.
Show resolved Hide resolved
fn even_and_odd_zerofiers_and_shift_coefficients_with_tail_length(
n: usize,
offset: BFieldElement,
Expand Down Expand Up @@ -155,7 +156,7 @@ pub fn coset_extrapolation(
shift_coefficients,
tail_length
);
minimal_interpolant.divide_and_conquer_batch_evaluate(&zerofier_tree)
minimal_interpolant.divide_and_conquer_batch_evaluate(zerofier_tree)
}

fn extrapolation<const SIZE: usize, const NUM_POINTS: usize>(c: &mut Criterion) {
Expand Down