-
Notifications
You must be signed in to change notification settings - Fork 803
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
python3 int <-> num_bigint support #543
Comments
I implemented this for grins a while ago: https://gitlab.com/Askaholic/pyrusty. However, it was my experience that the rust extension module using BigInt was noticeably slower than the python big integer implementation. I was testing this using the baby step giant step algorithm for finding a discrete logarithm. |
I would guess python is faster because it optimises for single-word numbers, whereas |
See also: rust-num/num-bigint#36 |
See also #124
The text was updated successfully, but these errors were encountered: