
(FPCore (x) :precision binary64 (- (* 0.954929658551372 x) (* 0.12900613773279798 (* (* x x) x))))
double code(double x) {
return (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x));
}
real(8) function code(x)
real(8), intent (in) :: x
code = (0.954929658551372d0 * x) - (0.12900613773279798d0 * ((x * x) * x))
end function
public static double code(double x) {
return (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x));
}
def code(x): return (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x))
function code(x) return Float64(Float64(0.954929658551372 * x) - Float64(0.12900613773279798 * Float64(Float64(x * x) * x))) end
function tmp = code(x) tmp = (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x)); end
code[x_] := N[(N[(0.954929658551372 * x), $MachinePrecision] - N[(0.12900613773279798 * N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
0.954929658551372 \cdot x - 0.12900613773279798 \cdot \left(\left(x \cdot x\right) \cdot x\right)
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 5 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (- (* 0.954929658551372 x) (* 0.12900613773279798 (* (* x x) x))))
double code(double x) {
return (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x));
}
real(8) function code(x)
real(8), intent (in) :: x
code = (0.954929658551372d0 * x) - (0.12900613773279798d0 * ((x * x) * x))
end function
public static double code(double x) {
return (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x));
}
def code(x): return (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x))
function code(x) return Float64(Float64(0.954929658551372 * x) - Float64(0.12900613773279798 * Float64(Float64(x * x) * x))) end
function tmp = code(x) tmp = (0.954929658551372 * x) - (0.12900613773279798 * ((x * x) * x)); end
code[x_] := N[(N[(0.954929658551372 * x), $MachinePrecision] - N[(0.12900613773279798 * N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
0.954929658551372 \cdot x - 0.12900613773279798 \cdot \left(\left(x \cdot x\right) \cdot x\right)
\end{array}
(FPCore (x) :precision binary64 (fma x 0.954929658551372 (* (pow x 3.0) -0.12900613773279798)))
double code(double x) {
return fma(x, 0.954929658551372, (pow(x, 3.0) * -0.12900613773279798));
}
function code(x) return fma(x, 0.954929658551372, Float64((x ^ 3.0) * -0.12900613773279798)) end
code[x_] := N[(x * 0.954929658551372 + N[(N[Power[x, 3.0], $MachinePrecision] * -0.12900613773279798), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(x, 0.954929658551372, {x}^{3} \cdot -0.12900613773279798\right)
\end{array}
Initial program 99.8%
lift--.f64N/A
sub-negN/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lift-*.f64N/A
distribute-lft-neg-inN/A
lower-*.f64N/A
metadata-eval99.9
lift-*.f64N/A
lift-*.f64N/A
pow3N/A
lower-pow.f6499.9
Applied rewrites99.9%
Final simplification99.9%
(FPCore (x)
:precision binary64
(if (<=
(- (* 0.954929658551372 x) (* (* (* x x) x) 0.12900613773279798))
-2000.0)
(* (* -0.12900613773279798 x) (* x x))
(* 0.954929658551372 x)))
double code(double x) {
double tmp;
if (((0.954929658551372 * x) - (((x * x) * x) * 0.12900613773279798)) <= -2000.0) {
tmp = (-0.12900613773279798 * x) * (x * x);
} else {
tmp = 0.954929658551372 * x;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (((0.954929658551372d0 * x) - (((x * x) * x) * 0.12900613773279798d0)) <= (-2000.0d0)) then
tmp = ((-0.12900613773279798d0) * x) * (x * x)
else
tmp = 0.954929658551372d0 * x
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (((0.954929658551372 * x) - (((x * x) * x) * 0.12900613773279798)) <= -2000.0) {
tmp = (-0.12900613773279798 * x) * (x * x);
} else {
tmp = 0.954929658551372 * x;
}
return tmp;
}
def code(x): tmp = 0 if ((0.954929658551372 * x) - (((x * x) * x) * 0.12900613773279798)) <= -2000.0: tmp = (-0.12900613773279798 * x) * (x * x) else: tmp = 0.954929658551372 * x return tmp
function code(x) tmp = 0.0 if (Float64(Float64(0.954929658551372 * x) - Float64(Float64(Float64(x * x) * x) * 0.12900613773279798)) <= -2000.0) tmp = Float64(Float64(-0.12900613773279798 * x) * Float64(x * x)); else tmp = Float64(0.954929658551372 * x); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (((0.954929658551372 * x) - (((x * x) * x) * 0.12900613773279798)) <= -2000.0) tmp = (-0.12900613773279798 * x) * (x * x); else tmp = 0.954929658551372 * x; end tmp_2 = tmp; end
code[x_] := If[LessEqual[N[(N[(0.954929658551372 * x), $MachinePrecision] - N[(N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision] * 0.12900613773279798), $MachinePrecision]), $MachinePrecision], -2000.0], N[(N[(-0.12900613773279798 * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision], N[(0.954929658551372 * x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;0.954929658551372 \cdot x - \left(\left(x \cdot x\right) \cdot x\right) \cdot 0.12900613773279798 \leq -2000:\\
\;\;\;\;\left(-0.12900613773279798 \cdot x\right) \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;0.954929658551372 \cdot x\\
\end{array}
\end{array}
if (-.f64 (*.f64 #s(literal 238732414637843/250000000000000 binary64) x) (*.f64 #s(literal 6450306886639899/50000000000000000 binary64) (*.f64 (*.f64 x x) x))) < -2e3Initial program 99.8%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
lower-pow.f6499.4
Applied rewrites99.4%
Applied rewrites99.3%
if -2e3 < (-.f64 (*.f64 #s(literal 238732414637843/250000000000000 binary64) x) (*.f64 #s(literal 6450306886639899/50000000000000000 binary64) (*.f64 (*.f64 x x) x))) Initial program 99.8%
Taylor expanded in x around 0
*-commutativeN/A
lower-*.f6468.2
Applied rewrites68.2%
Final simplification75.6%
(FPCore (x) :precision binary64 (fma (* x x) (* -0.12900613773279798 x) (* 0.954929658551372 x)))
double code(double x) {
return fma((x * x), (-0.12900613773279798 * x), (0.954929658551372 * x));
}
function code(x) return fma(Float64(x * x), Float64(-0.12900613773279798 * x), Float64(0.954929658551372 * x)) end
code[x_] := N[(N[(x * x), $MachinePrecision] * N[(-0.12900613773279798 * x), $MachinePrecision] + N[(0.954929658551372 * x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(x \cdot x, -0.12900613773279798 \cdot x, 0.954929658551372 \cdot x\right)
\end{array}
Initial program 99.8%
lift--.f64N/A
sub-negN/A
+-commutativeN/A
lift-*.f64N/A
*-commutativeN/A
distribute-rgt-neg-inN/A
lift-*.f64N/A
associate-*l*N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
metadata-eval99.9
lift-*.f64N/A
*-commutativeN/A
lower-*.f6499.9
Applied rewrites99.9%
Final simplification99.9%
(FPCore (x) :precision binary64 (* (fma (* -0.12900613773279798 x) x 0.954929658551372) x))
double code(double x) {
return fma((-0.12900613773279798 * x), x, 0.954929658551372) * x;
}
function code(x) return Float64(fma(Float64(-0.12900613773279798 * x), x, 0.954929658551372) * x) end
code[x_] := N[(N[(N[(-0.12900613773279798 * x), $MachinePrecision] * x + 0.954929658551372), $MachinePrecision] * x), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(-0.12900613773279798 \cdot x, x, 0.954929658551372\right) \cdot x
\end{array}
Initial program 99.8%
lift--.f64N/A
sub-negN/A
+-commutativeN/A
lift-*.f64N/A
lift-*.f64N/A
associate-*r*N/A
distribute-lft-neg-inN/A
lift-*.f64N/A
distribute-rgt-outN/A
lower-*.f64N/A
distribute-lft-neg-inN/A
lift-*.f64N/A
associate-*r*N/A
lower-fma.f64N/A
lower-*.f64N/A
metadata-eval99.8
Applied rewrites99.8%
Final simplification99.8%
(FPCore (x) :precision binary64 (* 0.954929658551372 x))
double code(double x) {
return 0.954929658551372 * x;
}
real(8) function code(x)
real(8), intent (in) :: x
code = 0.954929658551372d0 * x
end function
public static double code(double x) {
return 0.954929658551372 * x;
}
def code(x): return 0.954929658551372 * x
function code(x) return Float64(0.954929658551372 * x) end
function tmp = code(x) tmp = 0.954929658551372 * x; end
code[x_] := N[(0.954929658551372 * x), $MachinePrecision]
\begin{array}{l}
\\
0.954929658551372 \cdot x
\end{array}
Initial program 99.8%
Taylor expanded in x around 0
*-commutativeN/A
lower-*.f6452.1
Applied rewrites52.1%
Final simplification52.1%
herbie shell --seed 2024254
(FPCore (x)
:name "Rosa's Benchmark"
:precision binary64
(- (* 0.954929658551372 x) (* 0.12900613773279798 (* (* x x) x))))