Relates :
|
|
Relates :
|
|
Relates :
|
The following program demonstrates that the x * x optimization when exp == 2 is still broken for jdk-8 (it is fixed on jdk-9): public class PowTest { public static void main(final String[] args) { double b = 1.0 / 3.0; double e = 2.0; double r = Math.pow(b, e); double n = b * b; // Find a base where pow(b, 2) != b * b while (r == n) { b += 1.0 / 3.0; n = Math.pow(b, e); r = b * b; } System.out.println("found b=" + b + " n=" + n + " r=" + r); r = n = Math.pow(b, e); // Wait until pow gets compiled into x * x while (r == n) { n = Math.pow(b, e); } System.out.println("bad b=" + b + " n=" + n + " r=" + r); } } Please fix it (it is causing us a lot of pain to have to deal with the same code producing different numeric results on each run). It would be nice at some point to require in the language that intrinsic math functions produce the same exact results when interpreted and compiled.
|