-
Notifications
You must be signed in to change notification settings - Fork 35
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
CycleFold #273
CycleFold #273
Conversation
…ims (Arecibo backport) (argumentcomputer#273) * `snark.rs`: factor out batch evaluation Sumcheck (argumentcomputer#106) * Factor batch eval * Comments * refactor: Remove nedless pass-by-value instances, turn on clippy (argumentcomputer#122) * refactor: Remove nedless pass-by-value instances, turn on the corresponding clippy lint - Updated function parameters in `ppsnark.rs` and `snark.rs` from `Vec<G::Scalar>` to `&[G::Scalar]` (introduced in argumentcomputer#106), - Modified the `prove` function in `ppsnark.rs` to also convert `T_row`, `W_row`, `T_col`, and `W_col` from `Vec` to slices (`&[G::Scalar]`). - Enhanced the `xclippy` alias in `.cargo/config` by adding `-Wclippy::checked_conversions`, `-Wclippy::needless_pass_by_value`, and `-Wclippy::unnecessary_mut_passed` and reorganizing its elements. * `PolyEval{Instance, Witness}::pad` Accept `Vec` rather that `&[T]` to avoid copies Co-authored-by: Francois Garillot <[email protected]> --------- Co-authored-by: Adrian Hamelink <[email protected]> --------- Co-authored-by: Adrian Hamelink <[email protected]> Co-authored-by: Adrian Hamelink <[email protected]>
7243360
to
6088d31
Compare
3a4137a
to
4dac5e0
Compare
3e61d81
to
2c02ddb
Compare
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.
First batch of comments
src/cyclefold/gadgets.rs
Outdated
use ff::Field; | ||
|
||
#[derive(Clone)] | ||
pub struct AllocatedPoint<E> |
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 we should avoid the is_infinity
bit here. In order to properly constrain it, we need to evaluate the curve equation non-natively which will be very expensive. Instead, (and if the properties of the curve allow), we could define (0,0)
as the identity and let the CycleFold circuit check that this holds.
e36efdb
to
b050e3f
Compare
836aedd
to
696cf65
Compare
What would you say the best test against this would be for Nova vs ParaNova? test_ivc_nontrivial_with vs test_trivial_cyclefold_prove_verify_with? |
I would say those two tests are the most comparable. But a word of warning: The current folding circuit is not in its final state. I'm nearing the end of a re-work for the way the public IO for the CycleFold circuit is dealt with. Right now the primary folding circuit has ~80k constraints, which is largely coming from the fact that the CycleFold IO has arity 16 (5 per commitment + 1 scalar). This will make the CycleFold circuit moderately larger (up to ~2k constraints), but significantly reduce the size of the folding circuit (numbers TBD soon). Hopefully in the next day or so these updates will be pushed and there can be a more fair comparison. |
Also fix CycleFold folding soundness issue by absorbing running instance
Just a quick update: I just finished the IO refactor, so the comparison should be more fair now. |
pub fn apply_fold<CS>( | ||
&self, | ||
mut cs: CS, | ||
params: &AllocatedNum<E::Base>, | ||
ro_consts: ROConstantsCircuit<E>, | ||
limb_width: usize, | ||
n_limbs: usize, | ||
) -> Result<AllocatedRelaxedR1CSInstance<E, NIO_CYCLE_FOLD>, SynthesisError> | ||
where | ||
CS: ConstraintSystem<E::Base>, |
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 really looks like crate::gadgets::r1cs::fold_with_r1cs
with a different RO setup.
It would be good to refactor the common part in an auxiliary function and call it from both places.
impl<E: Engine> CycleFoldNIFS<E> { | ||
/// Folds an R1CS instance/witness pair (U2, W2) into a relaxed R1CS instance/witness (U1, W1) | ||
/// returning the new folded accumulator and a commitment to the cross-term. | ||
pub fn prove( |
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 really looks, like
crate::nifs::NIFS::prove
with a different RO setup and internalfold
function. Would it be possible to have a trait implemented differently for NIFS / CycleFoldNIFS for the RO setup & fold, and then haveprove
defined in a general way as an extension method which code should be shared between the two instances of the trait? - We don't have an instance of
prove_mut
here, which is key to performance (see Acceleration of SpMVM in folding #75). It would be good to implement it, and solving (1.) above would be key to doing this without too much extra work.
Ok((U_c, U_p, checks_pass)) | ||
} | ||
|
||
pub fn synthesize<CS: ConstraintSystem<<E1 as Engine>::Base>>( |
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 really looks like crate::circuit::NovaAugmentedCircuit::synthesize
, perhaps unsurprisingly because most of the differences are in some setup functions, as well as in the auxiliary functions (alloc_witnesses, synthesize_base_case, synthesize_non_base_case
).
Here the reason you're duplicating most of the synthesize code is because in one case you want to route to the CycleFold methods, and in the other you want to route to the Nova methods.
You could instead put those three method signatures in a trait, have them implemented in different ways in each of the Nova/CycleFold circuit, and then have the top-level synthesize
defined generically for all implementers of the trait?
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've created #375 for the code duplication. THis looks great, thank you so much!
Thanks! |
This PR is a WIP for CycleFolding with Nova IVC.
TODO:
Incorporate the changes from Remove absorbing of running instance microsoft/Nova#291 in this(The same assumptions in this PR do not hold for the CycleFold folding, so it would be unsound to include these changes)RecursiveSNARK
implementationIncorporate the changes from move fold step from CompressedSNARK to RecursiveSNARK microsoft/Nova#295 in thisRecursiveSNARK
implementation