We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
lagrange
pallas_based_plonk
Right now lagrange funciton is doing
Array.init domain_size ~f:(fun i -> Kimchi_bindings.Protocol.SRS.Fq.lagrange_commitment srs domain_size i )
which is calling the bindings function as many times as the domain size. This is concretely expensive: 150ms for just querying all the lagrange bases.
Alternative suggestion:
The text was updated successfully, but these errors were encountered:
[#16112] Improve lagrange_commitments_whole_domain
6ee9f4d
b6fa49a
92a64fb
da94561
d9dbb02
f5c89f3
volhovm
No branches or pull requests
Right now
lagrange
funciton is doingwhich is calling the bindings function as many times as the domain size. This is concretely expensive: 150ms for just querying all the lagrange bases.
Alternative suggestion:
The text was updated successfully, but these errors were encountered: