-
Notifications
You must be signed in to change notification settings - Fork 129
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
remove: multiexp_serial
for halo2curves version
#282
Conversation
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 also removing the best_multiexp
, and using the one from halo2curves
?
Otherwise this looks good to me! It's great to remove lines of code :D
Will probably do it in a separated PR such that we have an atomic way to rollback in case it's needed. Sounds good? |
sounds good! |
You can also remove see cc7b71f |
This removes the entire definition of `multiexp_serial` and replaces it's usage for the `halo2curves` version (which is the same exact one). This was seen while reviewing #277 and will save the deprecation of the method and instead will completelly remove it.
5d15843
to
b1f43fa
Compare
We remove duplicated code from `halo2` which now is externalized (and more optimal) in `halo2curves`. This is a followup of #282
* remove: best_{fft/multiexp} and use halo2curves We remove duplicated code from `halo2` which now is externalized (and more optimal) in `halo2curves`. This is a followup of #282 * remove: Unused functions from arithmetic * remove: FFT & MSM benches As these are now handled by halo2curves. There's no need to bench here.
This removes the entire definition of
multiexp_serial
and replaces it's usage for thehalo2curves
version (which is similar and has the same functionality apparently).This was seen while reviewing #277 and will save the deprecation of the method and instead will completely remove it.
cc: @kilic to make sure that the most performant variant (as they're not the same exact code).