Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions .test_patterns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,11 @@ tests:
owners:
- *phil

- regex: "src/e2e_epochs/epochs_mbps\\.parallel\\.test\\.ts"
flake_group_id: e2e-p2p-epoch-flakes
owners:
- *palla

- regex: "src/e2e_epochs/.*\\.test\\.ts"
flake_group_id: e2e-p2p-epoch-flakes
owners:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,7 @@ void coset_ifft(std::vector<Fr*> coeffs, const EvaluationDomain<Fr>& domain);
// void populate_with_vanishing_polynomial(Fr* coeffs, const size_t num_non_zero_entries, const EvaluationDomain<Fr>&
// src_domain, const EvaluationDomain<Fr>& target_domain);

fr compute_barycentric_evaluation(const fr* coeffs,
size_t num_coeffs,
const fr& z,
const EvaluationDomain<fr>& domain);
fr compute_barycentric_evaluation(const fr* coeffs, size_t num_coeffs, const fr& z, const EvaluationDomain<fr>& domain);

// This function computes sum of all scalars in a given array.
template <typename Fr> Fr compute_sum(const Fr* src, const size_t n);
Expand Down
Loading