Skip to content
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

math/big: a fast expNN algorithm when n is large #41524

Open
SparrowLii opened this issue Sep 21, 2020 · 1 comment
Open

math/big: a fast expNN algorithm when n is large #41524

SparrowLii opened this issue Sep 21, 2020 · 1 comment
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. Performance
Milestone

Comments

@SparrowLii
Copy link
Contributor

An improved Montgomery algorithm, up to 50% performance improvement. It utilizes the particularity of low-order multiplication and mod B^n-1 algorithm to reduce the number of calculations. I have written the code in CL, if anybody are interested in this algorithm, I will add the corresponding test and detailed explanation.
name old time/op new time/op delta
ExpLarge/100-4 137ms ± 3% 190ms ±15% +38.67% (p=0.004 n=6+5)
ExpLarge/200-4 987ms ± 0% 999ms ± 3% ~ (p=0.662 n=6+5)
ExpLarge/400-4 7.87s ± 3% 6.02s ± 2% -23.55% (p=0.003 n=7+5)
ExpLarge/600-4 26.8s ± 1% 16.7s ± 3% -37.62% (p=0.004 n=6+5)
ExpLarge/800-4 63.6s ± 2% 35.4s ± 1% -44.33% (p=0.003 n=7+5)
ExpLarge/1000-4 123s ± 0% 64s ± 0% -48.39% (p=0.036 n=3+5)

@gopherbot
Copy link

Change https://golang.org/cl/256257 mentions this issue: math/big: a fast expNN algorithm when n is large

@ALTree ALTree added Performance NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. labels Sep 21, 2020
@ALTree ALTree added this to the Unplanned milestone Sep 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. Performance
Projects
None yet
Development

No branches or pull requests

3 participants