-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: avoid DIVQ #9246
Comments
The Go compiler already does this. If you want to know the sequence, write |
I think the suggestion here is to do it when dividing in a loop by an invariant value that is only known at run time. |
Ok, good to know. Note that Torbjörn's paper suggests that even for a non-constant divisor, division via mutiplication by inverse is faster: "Somewhat surprisingly, a well-tuned Newton reciprocal followed by multiplication and adjustments wins over the hardware division instructions even for a single non-invariant division on modern 64-bit PC processors." |
This has been implemented in https://golang.org/cl/250417 |
Suggested by Torbjörn Granlund (personal communication):
"
Division:
The DIVQ instruction is terrible. Don't ever use it. You might
want to take a look at "Improved Division by Invariant Integers" by
me and a collegue of mine. Your loop will become about 10 times
faster. You need to apply this also to generic division (not just the
one-divisor-word case.
"
(paper reference: https://gmplib.org/~tege/division-paper.pdf)
The text was updated successfully, but these errors were encountered: