-
Notifications
You must be signed in to change notification settings - Fork 129
feat: Split plonk and honk tests #529
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
20 commits
Select commit
Hold shift + click to select a range
2b681d2
Initial commit so tests run
codygunton 4fe7ac2
Illustrate aux gate issue
codygunton ae2f094
Add notes, note last point where circuit checks
codygunton 56ebb56
Merge branch 'master' into cg/big-split
codygunton a779895
composer~>circuit_constructor
codygunton bfd910f
StandardHonk test use CCtor
codygunton 7b4ed77
UltraHonk tests use CCtor
codygunton bc4bcbe
Remove honk composer include from UH tests.
codygunton 33f31ab
Merge branch 'master' into cg/big-split
codygunton 83412a7
Honk doesn't depend on Plonk anymore
codygunton 83cf7d9
Fix honk tests with Grumpkin.
codygunton 08e2741
Honk is split.
codygunton dc05a2c
Plonk tests split.
codygunton 40e4d69
Fix recursive verifier
codygunton ecea160
Move ensure_... to finalize_circuit.
codygunton 4e7006d
Move _ensure_ to composer helper.
codygunton 5b10604
Cleanup
codygunton e3e1d45
Re-add untested code used by circuits.
codygunton b46536f
Merge branch 'master' into cg/split-fooonk-tests
Rumata888 4c32997
Mini comment fix
Rumata888 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
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 |
|---|---|---|
|
|
@@ -149,7 +149,8 @@ void UltraHonkComposerHelper_<Flavor>::compute_witness(CircuitConstructor& circu | |
| template <UltraFlavor Flavor> | ||
| UltraProver_<Flavor> UltraHonkComposerHelper_<Flavor>::create_prover(CircuitConstructor& circuit_constructor) | ||
| { | ||
| finalize_circuit(circuit_constructor); | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't see a reason for composer helpers to have a function that proxies immediately to |
||
| circuit_constructor.add_gates_to_ensure_all_polys_are_non_zero(); | ||
| circuit_constructor.finalize_circuit(); | ||
|
|
||
| compute_proving_key(circuit_constructor); | ||
| compute_witness(circuit_constructor); | ||
|
|
||
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
206 changes: 111 additions & 95 deletions
206
cpp/src/barretenberg/honk/composer/standard_honk_composer.test.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
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 was out of date.