
(FPCore (x y) :precision binary64 (+ (+ (* x y) x) y))
double code(double x, double y) {
return ((x * y) + x) + y;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * y) + x) + y
end function
public static double code(double x, double y) {
return ((x * y) + x) + y;
}
def code(x, y): return ((x * y) + x) + y
function code(x, y) return Float64(Float64(Float64(x * y) + x) + y) end
function tmp = code(x, y) tmp = ((x * y) + x) + y; end
code[x_, y_] := N[(N[(N[(x * y), $MachinePrecision] + x), $MachinePrecision] + y), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot y + x\right) + y
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y) :precision binary64 (+ (+ (* x y) x) y))
double code(double x, double y) {
return ((x * y) + x) + y;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * y) + x) + y
end function
public static double code(double x, double y) {
return ((x * y) + x) + y;
}
def code(x, y): return ((x * y) + x) + y
function code(x, y) return Float64(Float64(Float64(x * y) + x) + y) end
function tmp = code(x, y) tmp = ((x * y) + x) + y; end
code[x_, y_] := N[(N[(N[(x * y), $MachinePrecision] + x), $MachinePrecision] + y), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot y + x\right) + y
\end{array}
NOTE: x and y should be sorted in increasing order before calling this function. (FPCore (x y) :precision binary64 (+ y (fma x y x)))
assert(x < y);
double code(double x, double y) {
return y + fma(x, y, x);
}
x, y = sort([x, y]) function code(x, y) return Float64(y + fma(x, y, x)) end
NOTE: x and y should be sorted in increasing order before calling this function. code[x_, y_] := N[(y + N[(x * y + x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
y + \mathsf{fma}\left(x, y, x\right)
\end{array}
Initial program 100.0%
+-commutative100.0%
fma-def100.0%
Simplified100.0%
Final simplification100.0%
NOTE: x and y should be sorted in increasing order before calling this function.
(FPCore (x y)
:precision binary64
(if (<= y -330000.0)
(* y x)
(if (or (<= y 1.95e+157) (and (not (<= y 1.06e+251)) (<= y 3.5e+304)))
(+ y x)
(* y x))))assert(x < y);
double code(double x, double y) {
double tmp;
if (y <= -330000.0) {
tmp = y * x;
} else if ((y <= 1.95e+157) || (!(y <= 1.06e+251) && (y <= 3.5e+304))) {
tmp = y + x;
} else {
tmp = y * x;
}
return tmp;
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (y <= (-330000.0d0)) then
tmp = y * x
else if ((y <= 1.95d+157) .or. (.not. (y <= 1.06d+251)) .and. (y <= 3.5d+304)) then
tmp = y + x
else
tmp = y * x
end if
code = tmp
end function
assert x < y;
public static double code(double x, double y) {
double tmp;
if (y <= -330000.0) {
tmp = y * x;
} else if ((y <= 1.95e+157) || (!(y <= 1.06e+251) && (y <= 3.5e+304))) {
tmp = y + x;
} else {
tmp = y * x;
}
return tmp;
}
[x, y] = sort([x, y]) def code(x, y): tmp = 0 if y <= -330000.0: tmp = y * x elif (y <= 1.95e+157) or (not (y <= 1.06e+251) and (y <= 3.5e+304)): tmp = y + x else: tmp = y * x return tmp
x, y = sort([x, y]) function code(x, y) tmp = 0.0 if (y <= -330000.0) tmp = Float64(y * x); elseif ((y <= 1.95e+157) || (!(y <= 1.06e+251) && (y <= 3.5e+304))) tmp = Float64(y + x); else tmp = Float64(y * x); end return tmp end
x, y = num2cell(sort([x, y])){:}
function tmp_2 = code(x, y)
tmp = 0.0;
if (y <= -330000.0)
tmp = y * x;
elseif ((y <= 1.95e+157) || (~((y <= 1.06e+251)) && (y <= 3.5e+304)))
tmp = y + x;
else
tmp = y * x;
end
tmp_2 = tmp;
end
NOTE: x and y should be sorted in increasing order before calling this function. code[x_, y_] := If[LessEqual[y, -330000.0], N[(y * x), $MachinePrecision], If[Or[LessEqual[y, 1.95e+157], And[N[Not[LessEqual[y, 1.06e+251]], $MachinePrecision], LessEqual[y, 3.5e+304]]], N[(y + x), $MachinePrecision], N[(y * x), $MachinePrecision]]]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
\begin{array}{l}
\mathbf{if}\;y \leq -330000:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.95 \cdot 10^{+157} \lor \neg \left(y \leq 1.06 \cdot 10^{+251}\right) \land y \leq 3.5 \cdot 10^{+304}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\end{array}
if y < -3.3e5 or 1.94999999999999985e157 < y < 1.05999999999999998e251 or 3.4999999999999998e304 < y Initial program 100.0%
Taylor expanded in y around inf 99.4%
Taylor expanded in x around inf 57.8%
if -3.3e5 < y < 1.94999999999999985e157 or 1.05999999999999998e251 < y < 3.4999999999999998e304Initial program 100.0%
Taylor expanded in y around 0 88.2%
Final simplification78.1%
NOTE: x and y should be sorted in increasing order before calling this function. (FPCore (x y) :precision binary64 (if (<= y -490000.0) (* y x) (if (<= y 1.0) (+ y x) (+ y (* y x)))))
assert(x < y);
double code(double x, double y) {
double tmp;
if (y <= -490000.0) {
tmp = y * x;
} else if (y <= 1.0) {
tmp = y + x;
} else {
tmp = y + (y * x);
}
return tmp;
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (y <= (-490000.0d0)) then
tmp = y * x
else if (y <= 1.0d0) then
tmp = y + x
else
tmp = y + (y * x)
end if
code = tmp
end function
assert x < y;
public static double code(double x, double y) {
double tmp;
if (y <= -490000.0) {
tmp = y * x;
} else if (y <= 1.0) {
tmp = y + x;
} else {
tmp = y + (y * x);
}
return tmp;
}
[x, y] = sort([x, y]) def code(x, y): tmp = 0 if y <= -490000.0: tmp = y * x elif y <= 1.0: tmp = y + x else: tmp = y + (y * x) return tmp
x, y = sort([x, y]) function code(x, y) tmp = 0.0 if (y <= -490000.0) tmp = Float64(y * x); elseif (y <= 1.0) tmp = Float64(y + x); else tmp = Float64(y + Float64(y * x)); end return tmp end
x, y = num2cell(sort([x, y])){:}
function tmp_2 = code(x, y)
tmp = 0.0;
if (y <= -490000.0)
tmp = y * x;
elseif (y <= 1.0)
tmp = y + x;
else
tmp = y + (y * x);
end
tmp_2 = tmp;
end
NOTE: x and y should be sorted in increasing order before calling this function. code[x_, y_] := If[LessEqual[y, -490000.0], N[(y * x), $MachinePrecision], If[LessEqual[y, 1.0], N[(y + x), $MachinePrecision], N[(y + N[(y * x), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
\begin{array}{l}
\mathbf{if}\;y \leq -490000:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y + y \cdot x\\
\end{array}
\end{array}
if y < -4.9e5Initial program 100.0%
Taylor expanded in y around inf 99.1%
Taylor expanded in x around inf 47.7%
if -4.9e5 < y < 1Initial program 100.0%
Taylor expanded in y around 0 98.3%
if 1 < y Initial program 100.0%
Taylor expanded in y around inf 99.0%
Final simplification86.0%
NOTE: x and y should be sorted in increasing order before calling this function. (FPCore (x y) :precision binary64 (if (<= x -3.5e-10) (* y x) (if (<= x 1.0) y (* y x))))
assert(x < y);
double code(double x, double y) {
double tmp;
if (x <= -3.5e-10) {
tmp = y * x;
} else if (x <= 1.0) {
tmp = y;
} else {
tmp = y * x;
}
return tmp;
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (x <= (-3.5d-10)) then
tmp = y * x
else if (x <= 1.0d0) then
tmp = y
else
tmp = y * x
end if
code = tmp
end function
assert x < y;
public static double code(double x, double y) {
double tmp;
if (x <= -3.5e-10) {
tmp = y * x;
} else if (x <= 1.0) {
tmp = y;
} else {
tmp = y * x;
}
return tmp;
}
[x, y] = sort([x, y]) def code(x, y): tmp = 0 if x <= -3.5e-10: tmp = y * x elif x <= 1.0: tmp = y else: tmp = y * x return tmp
x, y = sort([x, y]) function code(x, y) tmp = 0.0 if (x <= -3.5e-10) tmp = Float64(y * x); elseif (x <= 1.0) tmp = y; else tmp = Float64(y * x); end return tmp end
x, y = num2cell(sort([x, y])){:}
function tmp_2 = code(x, y)
tmp = 0.0;
if (x <= -3.5e-10)
tmp = y * x;
elseif (x <= 1.0)
tmp = y;
else
tmp = y * x;
end
tmp_2 = tmp;
end
NOTE: x and y should be sorted in increasing order before calling this function. code[x_, y_] := If[LessEqual[x, -3.5e-10], N[(y * x), $MachinePrecision], If[LessEqual[x, 1.0], y, N[(y * x), $MachinePrecision]]]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
\begin{array}{l}
\mathbf{if}\;x \leq -3.5 \cdot 10^{-10}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\end{array}
if x < -3.4999999999999998e-10 or 1 < x Initial program 100.0%
Taylor expanded in y around inf 50.1%
Taylor expanded in x around inf 48.5%
if -3.4999999999999998e-10 < x < 1Initial program 100.0%
Taylor expanded in y around inf 73.5%
Taylor expanded in x around 0 72.8%
Final simplification59.3%
NOTE: x and y should be sorted in increasing order before calling this function. (FPCore (x y) :precision binary64 (+ y (* x (+ y 1.0))))
assert(x < y);
double code(double x, double y) {
return y + (x * (y + 1.0));
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = y + (x * (y + 1.0d0))
end function
assert x < y;
public static double code(double x, double y) {
return y + (x * (y + 1.0));
}
[x, y] = sort([x, y]) def code(x, y): return y + (x * (y + 1.0))
x, y = sort([x, y]) function code(x, y) return Float64(y + Float64(x * Float64(y + 1.0))) end
x, y = num2cell(sort([x, y])){:}
function tmp = code(x, y)
tmp = y + (x * (y + 1.0));
end
NOTE: x and y should be sorted in increasing order before calling this function. code[x_, y_] := N[(y + N[(x * N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
y + x \cdot \left(y + 1\right)
\end{array}
Initial program 100.0%
*-commutative100.0%
distribute-lft1-in100.0%
Applied egg-rr100.0%
Final simplification100.0%
NOTE: x and y should be sorted in increasing order before calling this function. (FPCore (x y) :precision binary64 y)
assert(x < y);
double code(double x, double y) {
return y;
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = y
end function
assert x < y;
public static double code(double x, double y) {
return y;
}
[x, y] = sort([x, y]) def code(x, y): return y
x, y = sort([x, y]) function code(x, y) return y end
x, y = num2cell(sort([x, y])){:}
function tmp = code(x, y)
tmp = y;
end
NOTE: x and y should be sorted in increasing order before calling this function. code[x_, y_] := y
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
y
\end{array}
Initial program 100.0%
Taylor expanded in y around inf 60.5%
Taylor expanded in x around 0 34.2%
Final simplification34.2%
herbie shell --seed 2023268
(FPCore (x y)
:name "Numeric.Log:$cexpm1 from log-domain-0.10.2.1, B"
:precision binary64
(+ (+ (* x y) x) y))