-
Notifications
You must be signed in to change notification settings - Fork 245
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
Panic in subgroup_fft_in_place benchmark #281
Comments
This is reproducible on master:
|
Hmm, let me try to reproduce this. Thanks for the heads up! |
Found the reason. The bench program considers degrees of 2^15 to 2^22. This is okay for BLS12-381::Fr, but not good for MNT6-753::Fr
algebra/poly-benches/benches/fft.rs Line 8 in e7eeea3
The latter only has 2^15 * 5^2, which is smaller than 1048576, aka 2^20. We can separate the benchmark size of the two curves, by separating the |
A PR is on the way. |
This was on the
add-biginterger-into-from-biguint
branch; not sure if that's relevant. I will try later to see if I can reproduce this with a backtrace and on master.The text was updated successfully, but these errors were encountered: