-
Notifications
You must be signed in to change notification settings - Fork 39
non-pow2 septic elliptic curve points add IOP #1081
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
base: feat/septic_global_chip
Are you sure you want to change the base?
non-pow2 septic elliptic curve points add IOP #1081
Conversation
f94004c
to
7e56337
Compare
.collect(), | ||
); | ||
// affine addition | ||
// zerocheck: 0 = s[0,b] * (x[b,0] - x[b,1]) - (y[b,0] - y[b,1]) with b != (1,...,1) |
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.
Some notes
[p1, p2, p3, p4, p5, o, o, o | p12, p34, p5, o]
sel_add: [1, 1, 1, ... ,0 ,0, 1, 1, 1, 0, 0 ,0 ,.. ..... 0, 0]
sel_bypass: [0, 0, 0, 0, 1, 1, ,... 0] => \sum_{s} eq(r ,s) - product_{i}(ri*si) - sel_add_eval(r, s) -
sel_last_onehot: [0, 0, 0, 0, ..., 1]
out = [r0, r1, r2, r3, ....]
round 0: (1-r0) * eq_less_than + r0 * [1, 0]
...
round i: (1-ri) * eq_less_than + ri * eval_so_far
...
round last: (1-r_last) * eq_less_than + r_last * eval_so_far
No description provided.