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

8334755: Asymptotically faster implementation of square root algorithm #19710

Closed
wants to merge 83 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
83 commits
Select commit Hold shift + click to select a range
f7317b9
Implemented Zimmermann's square root algorithm
fabioromano1 Jun 13, 2024
436c3d5
removed trailing whitespace
fabioromano1 Jun 13, 2024
fff8271
Iterative version of the algorithm
fabioromano1 Jun 14, 2024
4679d64
Removed trailing whitespaces
fabioromano1 Jun 14, 2024
4c186a4
Correct implementation
fabioromano1 Jun 15, 2024
324ae92
Bug correction in MutableBigInteger methods
fabioromano1 Jun 15, 2024
380ea4d
Correct bug in MutableBigInteger.compareShifted
fabioromano1 Jun 15, 2024
2890d6a
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 15, 2024
838cf4b
Square root algorithm optimization
fabioromano1 Jun 15, 2024
fd5aeab
Merge branch 'patchSqrt' of https://github.com/fabioromano1/jdk into …
fabioromano1 Jun 15, 2024
1648840
Correct bugs in MutableBigInteger methods
fabioromano1 Jun 16, 2024
dd8d53f
An optimization
fabioromano1 Jun 17, 2024
a33b63b
An optimization
fabioromano1 Jun 17, 2024
6043d5c
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 17, 2024
9a515bb
Implemented faster recursive version of square root algorithm
fabioromano1 Jun 18, 2024
9d2ea2a
Merge branch 'patchSqrt' of https://github.com/fabioromano1/jdk into …
fabioromano1 Jun 18, 2024
7ae2f9b
An optimization
fabioromano1 Jun 18, 2024
96264c9
Update MutableBigInteger.java
fabioromano1 Jun 18, 2024
4818185
Update comment
fabioromano1 Jun 18, 2024
5c3e279
An optimization
fabioromano1 Jun 18, 2024
ef76454
Optimized memory usage of square root algorithm
fabioromano1 Jun 18, 2024
333c6ab
An optimization
fabioromano1 Jun 18, 2024
3bb9c7a
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 18, 2024
6615950
An optimization
fabioromano1 Jun 18, 2024
7ff5abb
Merge branch 'patchSqrt' of https://github.com/fabioromano1/jdk into …
fabioromano1 Jun 18, 2024
f4da281
An optimization
fabioromano1 Jun 19, 2024
d95f9e7
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 19, 2024
eb8ed75
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 22, 2024
ddd6d73
Inserted author
fabioromano1 Jun 22, 2024
54fc5fe
Special cases and base case optimization
fabioromano1 Jun 22, 2024
7ea50cc
Simplification of code
fabioromano1 Jun 22, 2024
9a3bdc2
Removed unused import
fabioromano1 Jun 22, 2024
0baab1b
Normalize blocks
fabioromano1 Jun 23, 2024
67c44ee
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 23, 2024
5d14a4f
Added JMH benchmark class for Square Root
fabioromano1 Jun 23, 2024
a6559a5
Merge branch 'patchSqrt' of https://github.com/fabioromano1/jdk into …
fabioromano1 Jun 23, 2024
073c604
Code optimization
fabioromano1 Jun 23, 2024
123ab76
Removed useless instruction
fabioromano1 Jun 24, 2024
d327001
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 24, 2024
f895b63
Code optimization
fabioromano1 Jun 24, 2024
923b347
Optimized multiplication
fabioromano1 Jun 25, 2024
0368a19
Optimized to compute the remainder only if needed
fabioromano1 Jun 26, 2024
203d3f6
Removed unnecessary variable
fabioromano1 Jun 26, 2024
d90c596
Simplified computing square root of BigDecimal using BigInteger.sqrt()
fabioromano1 Jun 27, 2024
549c096
Correct BigDecimal.sqrt()
fabioromano1 Jun 27, 2024
32c1eac
Added "throw" to throw the ArithmeticException created
fabioromano1 Jun 27, 2024
d3ca0d4
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jun 27, 2024
781ad35
Reverted changes in BigDecimal
fabioromano1 Jun 27, 2024
af3a36f
An optimization
fabioromano1 Jun 29, 2024
4da36ec
Added documentation
fabioromano1 Jul 2, 2024
468fdd8
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jul 2, 2024
b28f034
Ensure normalized value in MutableBigInteger initialization with ints
fabioromano1 Jul 2, 2024
9aa7fdc
Merge branch 'openjdk:master' into patchSqrt
fabioromano1 Jul 9, 2024
95be919
Added comment on normalization in MutableBigInteger.sqrtRemZimmermann()
fabioromano1 Jul 9, 2024
a59250c
First revision changes
fabioromano1 Jul 12, 2024
5367273
Removed trailing whitespace
fabioromano1 Jul 12, 2024
7133c0a
Simplified the computation of the space to hold the square root
fabioromano1 Jul 14, 2024
f333ac4
An optimization
fabioromano1 Jul 14, 2024
9248fbd
Correct typo in comment
fabioromano1 Jul 14, 2024
dae8836
Optimized shift-and-add operations
fabioromano1 Jul 15, 2024
32b08f9
Correct square root computation of long values
fabioromano1 Jul 17, 2024
a23cdef
More accurate comment
fabioromano1 Jul 17, 2024
ebdd6d2
Optimized the square root's computation for long values
fabioromano1 Jul 18, 2024
3d8a913
Uniforming the computation of long values' square root
fabioromano1 Jul 18, 2024
ca075ed
Second revision changes
fabioromano1 Jul 18, 2024
2598ec9
Conditions' order reversed in MBI.ulongSqrt()
fabioromano1 Jul 18, 2024
6561f5a
Made normalization consistent with that of the C code in the paper
fabioromano1 Jul 24, 2024
05f4fff
An optimization
fabioromano1 Jul 24, 2024
daef55c
Revert "An optimization"
fabioromano1 Jul 24, 2024
78c332a
Use primitive right shift for speed
fabioromano1 Jul 24, 2024
96582ee
Optimized division by 2*sqrt
fabioromano1 Jul 25, 2024
27f0c8c
Slightly slower but safer code
fabioromano1 Jul 26, 2024
608c05c
Code simplification
fabioromano1 Jul 26, 2024
a0fa2a8
More accurate condition for MBI.safeRightShift()
fabioromano1 Jul 27, 2024
7aa9e7a
Avoid overflow in benchmark
fabioromano1 Jul 27, 2024
b7ca7bc
Range checks are already done by the BigInteger class
fabioromano1 Jul 27, 2024
099b360
Updated sqrt speed test benchmark
fabioromano1 Jul 27, 2024
cdda338
Correct test method name
fabioromano1 Jul 27, 2024
9ca2a81
Removed MBI.sqrt() old method
fabioromano1 Jul 27, 2024
53b7adc
If the input is a square, then s0 == 0, so testing for non-zero remai…
fabioromano1 Jul 29, 2024
a8d8b29
Revision changes
fabioromano1 Jul 31, 2024
f85f2a5
Memory usage optimization
fabioromano1 Jul 31, 2024
4c1d9e5
Last small changes
fabioromano1 Aug 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions src/java.base/share/classes/java/math/MutableBigInteger.java
Original file line number Diff line number Diff line change
@@ -1970,13 +1970,14 @@ MutableBigInteger[] sqrtRem(boolean needRemainder) {
final long x = this.toLong(); // unsigned

/* For every long value s in [0, 2^32) such that x == s * s,
* it is true that s == (long) Math.sqrt(x >= 0 ? x : x + 0x1p64).
* This means that Math.sqrt() returns the correct value for every perfect square,
* so the value returned by Math.sqrt() for a long value in the range [0, 2^64)
* is either correct, or rounded up by one if the value is too high
* it is true that s <= Math.round(Math.sqrt(x >= 0 ? x : x + 0x1p64)) <= s + 1,
* and if x == 2^64 - 1, then Math.round(Math.sqrt(x >= 0 ? x : x + 0x1p64)) == 2^32.
* This means that the value returned by Math.round(Math.sqrt())
* for a long value in the range [0, 2^64) is either correct,
* or rounded up by one if the value is too high
* and too close to the next perfect square.
*/
long s = (long) Math.sqrt(x >= 0 ? x : x + 0x1p64);
long s = Math.round(Math.sqrt(x >= 0 ? x : x + 0x1p64));
if (s > LONG_MASK // avoid overflow of s * s
|| Long.compareUnsigned(x, s * s) < 0) {
s--;
@@ -2032,7 +2033,7 @@ MutableBigInteger[] sqrtRem(boolean needRemainder) {
private MutableBigInteger[] sqrtRemZimmermann(int len, boolean needRemainder) {
if (len == 2) { // Base case
long x = ((value[offset] & LONG_MASK) << 32) | (value[offset + 1] & LONG_MASK);
long s = (long) Math.sqrt(x >= 0 ? x : x + 0x1p64);
long s = Math.round(Math.sqrt(x >= 0 ? x : x + 0x1p64));
if (s > LONG_MASK || Long.compareUnsigned(x, s * s) < 0)
s--;