feat: merge-train/barretenberg - #20941
Merged
Merged
Conversation
Cleanup and minor changes in the polynomial module.
Changes:
- Delete unused methods in `univariate_coefficient_basis.hpp`
- `is_zero`
- `random_element`
- `to_buffer`
- `serialize_from_buffer`
- `size`
- `get_random`
- Delete unused methods in `polynomial.hpp/cpp`
- `clear()`
- `right_shifted()`
- `debug_hash()`
- `compute_barycentric_evaluation()`
- `in_place_operation_viable`
- overload of evaluate `evaluate(const Fr& z, size_t target_size)`
- Delete unused methods in `polynomial_arithmetic.hpp/cpp`
- `compute_multiplicative_subgroup`
- `compute_barycentric_evaluation `
- `fft`, `coset_fft`, unused overloads of `fft_inner_parallel` and
`ifft`
- Delete unused `compute_generator_table` and `four_inverse` in
`evaluation_domain.hpp`
- Fixed `_allocate_aligned_memory` call to pass element count (`n_l`)
instead of byte size.
- Add new tests in `barycentric.test.cpp` covering the `stdlib` runtime
path
- Deduplicate compile-time and runtime `BarycentricData` logic via a
shared base class (resolves TODO
[#674](AztecProtocol/barretenberg#674))
Fixes an edge case in the `split_into_endomorphism_scalars` method. Adds detailed documentation for the algorithm in the form of a literate python program and regression tests for EC edge cases and `biggroup_goblin`. --------- Co-authored-by: notnotraju <raju@aztec-labs.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
## Summary - Parallelizes `PrivateExecutionSteps::parse()` — deserializes each step's ACIR bytecode and witness data in parallel using `parallel_for` - Parallelizes `PrivateExecutionStepRaw::load_and_decompress()` — decompresses gzip data for each step in parallel Closes #1395 [ClaudeBox log](http://ci.aztec-labs.com/6987e2365fae49247e056cb7a95c3578)
AztecBot
enabled auto-merge
February 27, 2026 19:12
Collaborator
Author
|
🤖 Auto-merge enabled after 4 hours of inactivity. This PR will be merged automatically once all checks pass. |
Collaborator
Author
Flakey Tests🤖 says: This CI run detected 1 tests that failed, but were tolerated due to a .test_patterns.yml entry. |
Collaborator
Author
|
🤖 Auto-merge enabled after 4 hours of inactivity. This PR will be merged automatically once all checks pass. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BEGIN_COMMIT_OVERRIDE
chore: cleanup polynomials module (#20585)
fix: splitting scalars edge case (#20686)
feat: parallelize ACIR parsing and decompression (#20873)
END_COMMIT_OVERRIDE