-
Notifications
You must be signed in to change notification settings - Fork 547
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
Add support to wrap prover for verifying chunked step proofs #14331
Conversation
!ci-build-me |
!ci-build-me |
!ci-build-me |
@@ -1561,6 +1563,7 @@ module Make_str (_ : Wire_types.Concrete) = struct | |||
~endo:Endo.Step_inner_curve.base | |||
~mds:Tick_field_sponge.params.mds | |||
~srs_length_log2:Common.Max_degree.step_log2 | |||
~zk_rows:3 |
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.
Nit: having a constant somewhere we use everywhere would be nice.
!ci-build-me |
!ci-build-me |
!ci-build-me |
!ci-build-me |
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.
approving o1js bump
This PR fixes the remaining bugs in the wrap prover for handling chunked step proofs.
To achieve this, this PR
zk_rows = 3
in the generated expressionnum_chunks
parameter toPickles.compile
, to allow for the creation of proofs using a different number of chunks.With these changes, this PR now passes the local test for creating proofs using chunks in pickles. The last remaining stage is verifying those proofs recursively using the step circuit, which will be completed in an upcoming PR.