-
Notifications
You must be signed in to change notification settings - Fork 104
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 Field::sum_of_products
#79
Comments
24 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The general operation
c = (a_0 * b_0) + (a_1 * b_1) + ...
(i.e. an inner product, but "sum of products" is a more obvious name) is used all over the place in cryptography. We can provide a default slow implementation of the function, and then downstream crates can override it with more efficient implementations (e.g. zkcrypto/bls12_381#84).The text was updated successfully, but these errors were encountered: