public class LogTest {
public static void main(String[] args) {
double x = 4.9E-324;
System.out.println(Math.log(x));
System.out.println(StrictMath.log(x));
}
}
Should be -744.4400719213812, result is -710.989276736877.
Correct on Intel x86.
public static void main(String[] args) {
double x = 4.9E-324;
System.out.println(Math.log(x));
System.out.println(StrictMath.log(x));
}
}
Should be -744.4400719213812, result is -710.989276736877.
Correct on Intel x86.
- relates to
-
JDK-8215133 AARCH64: disable Math.log intrinsic publishing
-
- Resolved
-
-
JDK-8196402 AARCH64: create intrinsic for Math.log
-
- Resolved
-
-
JDK-8211105 AArch64: Disable cos/sin and log intrinsics in jdk11u pending fix
-
- Resolved
-