
(FPCore (x y) :precision binary64 (+ (+ (* x 2.0) (* x x)) (* y y)))
double code(double x, double y) {
return ((x * 2.0) + (x * x)) + (y * y);
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * 2.0d0) + (x * x)) + (y * y)
end function
public static double code(double x, double y) {
return ((x * 2.0) + (x * x)) + (y * y);
}
def code(x, y): return ((x * 2.0) + (x * x)) + (y * y)
function code(x, y) return Float64(Float64(Float64(x * 2.0) + Float64(x * x)) + Float64(y * y)) end
function tmp = code(x, y) tmp = ((x * 2.0) + (x * x)) + (y * y); end
code[x_, y_] := N[(N[(N[(x * 2.0), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision] + N[(y * y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot 2 + x \cdot x\right) + y \cdot y
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 8 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y) :precision binary64 (+ (+ (* x 2.0) (* x x)) (* y y)))
double code(double x, double y) {
return ((x * 2.0) + (x * x)) + (y * y);
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * 2.0d0) + (x * x)) + (y * y)
end function
public static double code(double x, double y) {
return ((x * 2.0) + (x * x)) + (y * y);
}
def code(x, y): return ((x * 2.0) + (x * x)) + (y * y)
function code(x, y) return Float64(Float64(Float64(x * 2.0) + Float64(x * x)) + Float64(y * y)) end
function tmp = code(x, y) tmp = ((x * 2.0) + (x * x)) + (y * y); end
code[x_, y_] := N[(N[(N[(x * 2.0), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision] + N[(y * y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot 2 + x \cdot x\right) + y \cdot y
\end{array}
(FPCore (x y) :precision binary64 (+ (fma x x (+ x x)) (* y y)))
double code(double x, double y) {
return fma(x, x, (x + x)) + (y * y);
}
function code(x, y) return Float64(fma(x, x, Float64(x + x)) + Float64(y * y)) end
code[x_, y_] := N[(N[(x * x + N[(x + x), $MachinePrecision]), $MachinePrecision] + N[(y * y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(x, x, x + x\right) + y \cdot y
\end{array}
Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
distribute-lft-in100.0%
+-commutative100.0%
fma-def100.0%
add-log-exp45.6%
exp-lft-sqr45.6%
log-prod45.6%
add-log-exp48.4%
add-log-exp100.0%
Applied egg-rr100.0%
Final simplification100.0%
(FPCore (x y) :precision binary64 (fma y y (* x (+ x 2.0))))
double code(double x, double y) {
return fma(y, y, (x * (x + 2.0)));
}
function code(x, y) return fma(y, y, Float64(x * Float64(x + 2.0))) end
code[x_, y_] := N[(y * y + N[(x * N[(x + 2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(y, y, x \cdot \left(x + 2\right)\right)
\end{array}
Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
+-commutative100.0%
fma-def100.0%
+-commutative100.0%
Applied egg-rr100.0%
Final simplification100.0%
(FPCore (x y)
:precision binary64
(if (<= (* y y) 5.5e-280)
(+ x x)
(if (<= (* y y) 6.8e-228)
(* x x)
(if (<= (* y y) 2.2e-200)
(+ x x)
(if (<= (* y y) 1.36e+162) (* x x) (* y y))))))
double code(double x, double y) {
double tmp;
if ((y * y) <= 5.5e-280) {
tmp = x + x;
} else if ((y * y) <= 6.8e-228) {
tmp = x * x;
} else if ((y * y) <= 2.2e-200) {
tmp = x + x;
} else if ((y * y) <= 1.36e+162) {
tmp = x * x;
} else {
tmp = y * y;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((y * y) <= 5.5d-280) then
tmp = x + x
else if ((y * y) <= 6.8d-228) then
tmp = x * x
else if ((y * y) <= 2.2d-200) then
tmp = x + x
else if ((y * y) <= 1.36d+162) then
tmp = x * x
else
tmp = y * y
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((y * y) <= 5.5e-280) {
tmp = x + x;
} else if ((y * y) <= 6.8e-228) {
tmp = x * x;
} else if ((y * y) <= 2.2e-200) {
tmp = x + x;
} else if ((y * y) <= 1.36e+162) {
tmp = x * x;
} else {
tmp = y * y;
}
return tmp;
}
def code(x, y): tmp = 0 if (y * y) <= 5.5e-280: tmp = x + x elif (y * y) <= 6.8e-228: tmp = x * x elif (y * y) <= 2.2e-200: tmp = x + x elif (y * y) <= 1.36e+162: tmp = x * x else: tmp = y * y return tmp
function code(x, y) tmp = 0.0 if (Float64(y * y) <= 5.5e-280) tmp = Float64(x + x); elseif (Float64(y * y) <= 6.8e-228) tmp = Float64(x * x); elseif (Float64(y * y) <= 2.2e-200) tmp = Float64(x + x); elseif (Float64(y * y) <= 1.36e+162) tmp = Float64(x * x); else tmp = Float64(y * y); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((y * y) <= 5.5e-280) tmp = x + x; elseif ((y * y) <= 6.8e-228) tmp = x * x; elseif ((y * y) <= 2.2e-200) tmp = x + x; elseif ((y * y) <= 1.36e+162) tmp = x * x; else tmp = y * y; end tmp_2 = tmp; end
code[x_, y_] := If[LessEqual[N[(y * y), $MachinePrecision], 5.5e-280], N[(x + x), $MachinePrecision], If[LessEqual[N[(y * y), $MachinePrecision], 6.8e-228], N[(x * x), $MachinePrecision], If[LessEqual[N[(y * y), $MachinePrecision], 2.2e-200], N[(x + x), $MachinePrecision], If[LessEqual[N[(y * y), $MachinePrecision], 1.36e+162], N[(x * x), $MachinePrecision], N[(y * y), $MachinePrecision]]]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 5.5 \cdot 10^{-280}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;y \cdot y \leq 6.8 \cdot 10^{-228}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;y \cdot y \leq 2.2 \cdot 10^{-200}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;y \cdot y \leq 1.36 \cdot 10^{+162}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\end{array}
if (*.f64 y y) < 5.50000000000000001e-280 or 6.79999999999999981e-228 < (*.f64 y y) < 2.20000000000000013e-200Initial program 99.9%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in y around 0 100.0%
Taylor expanded in x around 0 65.9%
Simplified65.9%
if 5.50000000000000001e-280 < (*.f64 y y) < 6.79999999999999981e-228 or 2.20000000000000013e-200 < (*.f64 y y) < 1.35999999999999997e162Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
distribute-lft-in100.0%
+-commutative100.0%
fma-def100.0%
add-log-exp51.0%
exp-lft-sqr51.0%
log-prod51.0%
add-log-exp52.0%
add-log-exp100.0%
Applied egg-rr100.0%
Taylor expanded in x around inf 59.5%
Simplified59.5%
if 1.35999999999999997e162 < (*.f64 y y) Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in x around 0 89.5%
unpow289.5%
Simplified89.5%
Final simplification72.9%
(FPCore (x y)
:precision binary64
(if (or (<= x -2.9e+47)
(and (not (<= x 38000.0)) (or (<= x 1.9e+65) (not (<= x 5.7e+103)))))
(* x x)
(* y y)))
double code(double x, double y) {
double tmp;
if ((x <= -2.9e+47) || (!(x <= 38000.0) && ((x <= 1.9e+65) || !(x <= 5.7e+103)))) {
tmp = x * x;
} else {
tmp = y * y;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((x <= (-2.9d+47)) .or. (.not. (x <= 38000.0d0)) .and. (x <= 1.9d+65) .or. (.not. (x <= 5.7d+103))) then
tmp = x * x
else
tmp = y * y
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((x <= -2.9e+47) || (!(x <= 38000.0) && ((x <= 1.9e+65) || !(x <= 5.7e+103)))) {
tmp = x * x;
} else {
tmp = y * y;
}
return tmp;
}
def code(x, y): tmp = 0 if (x <= -2.9e+47) or (not (x <= 38000.0) and ((x <= 1.9e+65) or not (x <= 5.7e+103))): tmp = x * x else: tmp = y * y return tmp
function code(x, y) tmp = 0.0 if ((x <= -2.9e+47) || (!(x <= 38000.0) && ((x <= 1.9e+65) || !(x <= 5.7e+103)))) tmp = Float64(x * x); else tmp = Float64(y * y); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((x <= -2.9e+47) || (~((x <= 38000.0)) && ((x <= 1.9e+65) || ~((x <= 5.7e+103))))) tmp = x * x; else tmp = y * y; end tmp_2 = tmp; end
code[x_, y_] := If[Or[LessEqual[x, -2.9e+47], And[N[Not[LessEqual[x, 38000.0]], $MachinePrecision], Or[LessEqual[x, 1.9e+65], N[Not[LessEqual[x, 5.7e+103]], $MachinePrecision]]]], N[(x * x), $MachinePrecision], N[(y * y), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2.9 \cdot 10^{+47} \lor \neg \left(x \leq 38000\right) \land \left(x \leq 1.9 \cdot 10^{+65} \lor \neg \left(x \leq 5.7 \cdot 10^{+103}\right)\right):\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\end{array}
if x < -2.8999999999999998e47 or 38000 < x < 1.90000000000000006e65 or 5.70000000000000033e103 < x Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
distribute-lft-in100.0%
+-commutative100.0%
fma-def100.0%
add-log-exp30.3%
exp-lft-sqr30.3%
log-prod30.3%
add-log-exp30.3%
add-log-exp100.0%
Applied egg-rr100.0%
Taylor expanded in x around inf 85.8%
Simplified85.8%
if -2.8999999999999998e47 < x < 38000 or 1.90000000000000006e65 < x < 5.70000000000000033e103Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in x around 0 60.9%
unpow260.9%
Simplified60.9%
Final simplification70.9%
(FPCore (x y) :precision binary64 (if (<= (* y y) 1.25e-91) (* x (+ x 2.0)) (+ (* y y) (* x x))))
double code(double x, double y) {
double tmp;
if ((y * y) <= 1.25e-91) {
tmp = x * (x + 2.0);
} else {
tmp = (y * y) + (x * x);
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((y * y) <= 1.25d-91) then
tmp = x * (x + 2.0d0)
else
tmp = (y * y) + (x * x)
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((y * y) <= 1.25e-91) {
tmp = x * (x + 2.0);
} else {
tmp = (y * y) + (x * x);
}
return tmp;
}
def code(x, y): tmp = 0 if (y * y) <= 1.25e-91: tmp = x * (x + 2.0) else: tmp = (y * y) + (x * x) return tmp
function code(x, y) tmp = 0.0 if (Float64(y * y) <= 1.25e-91) tmp = Float64(x * Float64(x + 2.0)); else tmp = Float64(Float64(y * y) + Float64(x * x)); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((y * y) <= 1.25e-91) tmp = x * (x + 2.0); else tmp = (y * y) + (x * x); end tmp_2 = tmp; end
code[x_, y_] := If[LessEqual[N[(y * y), $MachinePrecision], 1.25e-91], N[(x * N[(x + 2.0), $MachinePrecision]), $MachinePrecision], N[(N[(y * y), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 1.25 \cdot 10^{-91}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot x\\
\end{array}
\end{array}
if (*.f64 y y) < 1.24999999999999999e-91Initial program 99.9%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in y around 0 94.6%
if 1.24999999999999999e-91 < (*.f64 y y) Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in x around inf 100.0%
unpow2100.0%
Simplified100.0%
Final simplification97.8%
(FPCore (x y) :precision binary64 (if (<= (* y y) 1.1e+162) (* x (+ x 2.0)) (* y y)))
double code(double x, double y) {
double tmp;
if ((y * y) <= 1.1e+162) {
tmp = x * (x + 2.0);
} else {
tmp = y * y;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((y * y) <= 1.1d+162) then
tmp = x * (x + 2.0d0)
else
tmp = y * y
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((y * y) <= 1.1e+162) {
tmp = x * (x + 2.0);
} else {
tmp = y * y;
}
return tmp;
}
def code(x, y): tmp = 0 if (y * y) <= 1.1e+162: tmp = x * (x + 2.0) else: tmp = y * y return tmp
function code(x, y) tmp = 0.0 if (Float64(y * y) <= 1.1e+162) tmp = Float64(x * Float64(x + 2.0)); else tmp = Float64(y * y); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((y * y) <= 1.1e+162) tmp = x * (x + 2.0); else tmp = y * y; end tmp_2 = tmp; end
code[x_, y_] := If[LessEqual[N[(y * y), $MachinePrecision], 1.1e+162], N[(x * N[(x + 2.0), $MachinePrecision]), $MachinePrecision], N[(y * y), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 1.1 \cdot 10^{+162}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\end{array}
if (*.f64 y y) < 1.1000000000000001e162Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in y around 0 83.0%
if 1.1000000000000001e162 < (*.f64 y y) Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
Taylor expanded in x around 0 89.5%
unpow289.5%
Simplified89.5%
Final simplification85.5%
(FPCore (x y) :precision binary64 (+ (* y y) (* x (+ x 2.0))))
double code(double x, double y) {
return (y * y) + (x * (x + 2.0));
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (y * y) + (x * (x + 2.0d0))
end function
public static double code(double x, double y) {
return (y * y) + (x * (x + 2.0));
}
def code(x, y): return (y * y) + (x * (x + 2.0))
function code(x, y) return Float64(Float64(y * y) + Float64(x * Float64(x + 2.0))) end
function tmp = code(x, y) tmp = (y * y) + (x * (x + 2.0)); end
code[x_, y_] := N[(N[(y * y), $MachinePrecision] + N[(x * N[(x + 2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
y \cdot y + x \cdot \left(x + 2\right)
\end{array}
Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
Final simplification100.0%
(FPCore (x y) :precision binary64 (* x x))
double code(double x, double y) {
return x * x;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = x * x
end function
public static double code(double x, double y) {
return x * x;
}
def code(x, y): return x * x
function code(x, y) return Float64(x * x) end
function tmp = code(x, y) tmp = x * x; end
code[x_, y_] := N[(x * x), $MachinePrecision]
\begin{array}{l}
\\
x \cdot x
\end{array}
Initial program 100.0%
distribute-lft-out100.0%
Simplified100.0%
distribute-lft-in100.0%
+-commutative100.0%
fma-def100.0%
add-log-exp45.6%
exp-lft-sqr45.6%
log-prod45.6%
add-log-exp48.4%
add-log-exp100.0%
Applied egg-rr100.0%
Taylor expanded in x around inf 38.9%
Simplified38.9%
Final simplification38.9%
(FPCore (x y) :precision binary64 (+ (* y y) (+ (* 2.0 x) (* x x))))
double code(double x, double y) {
return (y * y) + ((2.0 * x) + (x * x));
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (y * y) + ((2.0d0 * x) + (x * x))
end function
public static double code(double x, double y) {
return (y * y) + ((2.0 * x) + (x * x));
}
def code(x, y): return (y * y) + ((2.0 * x) + (x * x))
function code(x, y) return Float64(Float64(y * y) + Float64(Float64(2.0 * x) + Float64(x * x))) end
function tmp = code(x, y) tmp = (y * y) + ((2.0 * x) + (x * x)); end
code[x_, y_] := N[(N[(y * y), $MachinePrecision] + N[(N[(2.0 * x), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
y \cdot y + \left(2 \cdot x + x \cdot x\right)
\end{array}
herbie shell --seed 2023258
(FPCore (x y)
:name "Numeric.Log:$clog1p from log-domain-0.10.2.1, A"
:precision binary64
:herbie-target
(+ (* y y) (+ (* 2.0 x) (* x x)))
(+ (+ (* x 2.0) (* x x)) (* y y)))