-
Notifications
You must be signed in to change notification settings - Fork 94
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
o1vm/pickles: Add the verifier #2694
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
0b016bc
copy past verif from msm
marcbeunardeau88 97f3e04
msm: make pub(crate) fields pub
Fizzixnerd 4dacfa3
o1vm: Add o1_utils to Cargo.toml and update Cargo.lock
Fizzixnerd cab1271
o1vm/pickles: Add verifier to mod.rs and make compile.
Fizzixnerd 021790e
o1vm/pickles: format verifier.rs
Fizzixnerd f4ae20d
o1vm:pickles: Use correct imports for verifier.rs
marcbeunardeau88 28d2091
Revert "msm: make pub(crate) fields pub"
Fizzixnerd 031acd5
o1vm/pickles: Make prover and verifier compile
Fizzixnerd b817d5a
o1vm/pickles: Format
Fizzixnerd 5c8184d
o1vm/pickles: Fix various FIXMEs from review
Fizzixnerd e7c5b47
o1vm/pickles: Fix various FIXMEs from review [continued]
Fizzixnerd c70228b
Format and remove FIXMEs
Fizzixnerd 34d3b90
o1vm/pickles/verif: add a fixme
marcbeunardeau88 0ca024e
o1vm/pickles/prover: improve error message
marcbeunardeau88 1c570a2
WIP : add test
marcbeunardeau88 a0f4823
o1vm/pickles: Fix typo for vanishing poly
Fizzixnerd 944c700
o1vm/pickles: Format
Fizzixnerd 0366845
o1vm/pickles: Fixup for tests
Fizzixnerd 897a501
o1vm/pickles/test: simplify zero_to_n_minus_1 func
marcbeunardeau88 d61efb3
o1vm/pickles/test: simplify error creation
marcbeunardeau88 05260c9
o1vm/pickles: fmt
marcbeunardeau88 1c9014c
o1vm/pickles/test : fix it
marcbeunardeau88 0e84168
o1vm/pickles/ add verifier to the main
marcbeunardeau88 940d2b2
o1vm/pickles/prover: use commit with fixed blinder
marcbeunardeau88 f24ab52
o1vm/pickles: handle t correctly
marcbeunardeau88 a494251
o1vm/pickles: Actually commit to the quotient_poly
Fizzixnerd 772fee6
o1vm/pickles: Add debugging duration in tests
Fizzixnerd 824fd02
o1vm/pickles: Format
Fizzixnerd 7201003
o1vm/pickles: fix handling T's chunk
marcbeunardeau88 0d8e46d
o1vm/pickles: Remove wrong comments and cleanup for CI
Fizzixnerd 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
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 |
---|---|---|
|
@@ -16,4 +16,5 @@ else | |
./run-op-program.sh | ||
./run-cannon.sh | ||
fi | ||
|
||
./run-vm.sh |
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.
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.
What about using an iterator instead?
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.
Do you mean like a trait object? Otherwise we still need to pick an implementation of the iterator, and I don't see why Vec shouldn't be used simply instead.