-
Notifications
You must be signed in to change notification settings - Fork 129
chore: Remove usage of ComposerHelper and use CircuitBuilder from the API
#555
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
13f508c
No STANDARD_HONK composer type
codygunton cc2bb28
WIP on HasPlookup concept
codygunton b6f29d6
Fix bad constexpr condition.
codygunton da1d523
Move of IsAnyOf; get rid of some ComposerType's.
codygunton a71cb54
Introduce CIRCUIT_TYPE
codygunton b5abff6
Move CircuitType out of pk (honk tests build).
codygunton 7cbf926
ComposerType ~> CircuitType; move to honk flavor
codygunton 9aced62
Update comment.
codygunton ceb6ba0
Move composer helper files.
codygunton 4c06633
Rename helper files
codygunton 503086d
FIx j-s test.
codygunton 1e22d9f
Fix includes post-move and rename.
codygunton bde0d63
Rename composer helper classes
codygunton 63f46ed
Replace CircuitConstructor by CircuitBuilder
codygunton 9db5fcb
Move and rename circuit_constructor dirs and files
codygunton 6cdf7f7
Update packages commit
codygunton 733fe27
Remove constructred added as hack.
codygunton 9e757a9
Aztec packages commit set to master.
codygunton 85ff1db
That didn't work?
codygunton 13244f0
Fix compilation after removing hack ctors.
codygunton 0aa4f8b
Move comment to issue #562.
codygunton b608391
Move note to issue #563.
codygunton 57fa2d5
Leave note on unused function.
codygunton 4465cf2
Point to aztec-packages master
codygunton 0e8be82
Merge branch 'master' into cg/post-split-cleanup
codygunton fdda38c
Circuit type fix in bigfield.
suyash67 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -156,5 +156,6 @@ | |
| "-g" | ||
| ], | ||
| "cmake.useCMakePresets": "auto", | ||
| "editor.inlayHints.enabled": "offUnlessPressed" | ||
| }, | ||
| } | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 64c8ba700b75df07a8452a6f2eae3d23cf7625a6 | ||
| master |
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
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
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
8 changes: 4 additions & 4 deletions
8
cpp/src/barretenberg/benchmark/honk_bench/standard_honk.bench.cpp
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
8 changes: 4 additions & 4 deletions
8
cpp/src/barretenberg/benchmark/honk_bench/standard_plonk.bench.cpp
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
8 changes: 4 additions & 4 deletions
8
cpp/src/barretenberg/benchmark/honk_bench/ultra_honk.bench.cpp
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
8 changes: 4 additions & 4 deletions
8
cpp/src/barretenberg/benchmark/honk_bench/ultra_plonk.bench.cpp
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| #pragma once | ||
| #include <cstdint> | ||
|
|
||
| enum ComposerType : uint64_t { | ||
| enum CircuitType : uint64_t { | ||
| Standard = 1 << 0, | ||
| Turbo = 1 << 1, | ||
| }; |
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an annoying default probably most people don't want.