-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
feat(state-keeper): circuits seal criterion #729
Merged
Merged
Changes from 30 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
00513b2
Add circuits seal criterion
perekopskiy d19806e
Merge branch 'main' into circuits-seal-criterion
perekopskiy 6dfd883
Proper calculation of used circuits
perekopskiy eef8c1d
fmt
perekopskiy 740221d
Merge branch 'main' into circuits-seal-criterion
perekopskiy 8de4cc3
Clean up geometry criteria interface
perekopskiy 6c9185d
Add comment
perekopskiy fcaec4d
revert
perekopskiy 5bd13d3
Revert
perekopskiy a128c01
Fix
perekopskiy 3d9d349
Fix
perekopskiy 0844bd9
try f32
perekopskiy 812f211
Clean up
perekopskiy 569a493
Track hot write and reads
perekopskiy df9b7df
Add comment
perekopskiy fae2f1f
Apply some review suggestions
perekopskiy 8a487a2
Use updated zk_evm_abstractions
perekopskiy 428618f
Add comments
perekopskiy 8bda047
Change approach to tracing precompiles
perekopskiy 8cc77fd
Merge branch 'main' into circuits-seal-criterion
perekopskiy 7a80f06
Tests
perekopskiy 987e5fc
Switch to main branches back
perekopskiy a3413e6
Update prover lock file
perekopskiy 2e6ad23
Add comment
perekopskiy cc8f1cf
new db column
perekopskiy e37e910
new db column
perekopskiy 51fb475
Merge branch 'main' into circuits-seal-criterion
perekopskiy a14c189
Add changes to vm_boojum_integration
perekopskiy bc30894
Add sanity panic
perekopskiy 31c9499
Fix
perekopskiy 066a635
Merge branch 'main' into circuits-seal-criterion
perekopskiy a3916dc
Fix test
perekopskiy 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
2 changes: 2 additions & 0 deletions
2
core/lib/dal/migrations/20240104121833_l1-batch-predicted-circuits.down.sql
This file contains 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE l1_batches | ||
DROP COLUMN IF EXISTS predicted_circuits; |
2 changes: 2 additions & 0 deletions
2
core/lib/dal/migrations/20240104121833_l1-batch-predicted-circuits.up.sql
This file contains 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE l1_batches | ||
ADD COLUMN IF NOT EXISTS predicted_circuits INT; |
This file contains 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 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 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 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 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 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 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 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 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 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 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.
where is a good place to add the description on what 'predicted_circuits' mean?
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.
I think adding a comment to this method declaration will work best, will add it with the next PR I open