
(FPCore (x) :precision binary64 (sqrt (+ (pow x 2.0) (pow x 2.0))))
double code(double x) {
return sqrt((pow(x, 2.0) + pow(x, 2.0)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt(((x ** 2.0d0) + (x ** 2.0d0)))
end function
public static double code(double x) {
return Math.sqrt((Math.pow(x, 2.0) + Math.pow(x, 2.0)));
}
def code(x): return math.sqrt((math.pow(x, 2.0) + math.pow(x, 2.0)))
function code(x) return sqrt(Float64((x ^ 2.0) + (x ^ 2.0))) end
function tmp = code(x) tmp = sqrt(((x ^ 2.0) + (x ^ 2.0))); end
code[x_] := N[Sqrt[N[(N[Power[x, 2.0], $MachinePrecision] + N[Power[x, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{{x}^{2} + {x}^{2}}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 4 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (sqrt (+ (pow x 2.0) (pow x 2.0))))
double code(double x) {
return sqrt((pow(x, 2.0) + pow(x, 2.0)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt(((x ** 2.0d0) + (x ** 2.0d0)))
end function
public static double code(double x) {
return Math.sqrt((Math.pow(x, 2.0) + Math.pow(x, 2.0)));
}
def code(x): return math.sqrt((math.pow(x, 2.0) + math.pow(x, 2.0)))
function code(x) return sqrt(Float64((x ^ 2.0) + (x ^ 2.0))) end
function tmp = code(x) tmp = sqrt(((x ^ 2.0) + (x ^ 2.0))); end
code[x_] := N[Sqrt[N[(N[Power[x, 2.0], $MachinePrecision] + N[Power[x, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{{x}^{2} + {x}^{2}}
\end{array}
(FPCore (x) :precision binary64 (hypot x x))
double code(double x) {
return hypot(x, x);
}
public static double code(double x) {
return Math.hypot(x, x);
}
def code(x): return math.hypot(x, x)
function code(x) return hypot(x, x) end
function tmp = code(x) tmp = hypot(x, x); end
code[x_] := N[Sqrt[x ^ 2 + x ^ 2], $MachinePrecision]
\begin{array}{l}
\\
\mathsf{hypot}\left(x, x\right)
\end{array}
Initial program 52.1%
lift-sqrt.f64N/A
lift-+.f64N/A
lift-pow.f64N/A
unpow2N/A
lift-pow.f64N/A
unpow2N/A
lower-hypot.f64100.0
Applied rewrites100.0%
(FPCore (x) :precision binary64 (if (<= x -1e-310) (* (sqrt 2.0) (- x)) (* (sqrt 2.0) x)))
double code(double x) {
double tmp;
if (x <= -1e-310) {
tmp = sqrt(2.0) * -x;
} else {
tmp = sqrt(2.0) * x;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-1d-310)) then
tmp = sqrt(2.0d0) * -x
else
tmp = sqrt(2.0d0) * x
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -1e-310) {
tmp = Math.sqrt(2.0) * -x;
} else {
tmp = Math.sqrt(2.0) * x;
}
return tmp;
}
def code(x): tmp = 0 if x <= -1e-310: tmp = math.sqrt(2.0) * -x else: tmp = math.sqrt(2.0) * x return tmp
function code(x) tmp = 0.0 if (x <= -1e-310) tmp = Float64(sqrt(2.0) * Float64(-x)); else tmp = Float64(sqrt(2.0) * x); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -1e-310) tmp = sqrt(2.0) * -x; else tmp = sqrt(2.0) * x; end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -1e-310], N[(N[Sqrt[2.0], $MachinePrecision] * (-x)), $MachinePrecision], N[(N[Sqrt[2.0], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -1 \cdot 10^{-310}:\\
\;\;\;\;\sqrt{2} \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\sqrt{2} \cdot x\\
\end{array}
\end{array}
if x < -9.999999999999969e-311Initial program 57.0%
Taylor expanded in x around -inf
associate-*r*N/A
lower-*.f64N/A
mul-1-negN/A
lower-neg.f64N/A
lower-sqrt.f6499.4
Applied rewrites99.4%
if -9.999999999999969e-311 < x Initial program 47.3%
Taylor expanded in x around 0
*-commutativeN/A
lower-*.f64N/A
lower-sqrt.f6499.2
Applied rewrites99.2%
Final simplification99.3%
(FPCore (x) :precision binary64 (* (sqrt 2.0) x))
double code(double x) {
return sqrt(2.0) * x;
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt(2.0d0) * x
end function
public static double code(double x) {
return Math.sqrt(2.0) * x;
}
def code(x): return math.sqrt(2.0) * x
function code(x) return Float64(sqrt(2.0) * x) end
function tmp = code(x) tmp = sqrt(2.0) * x; end
code[x_] := N[(N[Sqrt[2.0], $MachinePrecision] * x), $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2} \cdot x
\end{array}
Initial program 52.1%
Taylor expanded in x around 0
*-commutativeN/A
lower-*.f64N/A
lower-sqrt.f6450.6
Applied rewrites50.6%
(FPCore (x) :precision binary64 (sqrt (+ x x)))
double code(double x) {
return sqrt((x + x));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt((x + x))
end function
public static double code(double x) {
return Math.sqrt((x + x));
}
def code(x): return math.sqrt((x + x))
function code(x) return sqrt(Float64(x + x)) end
function tmp = code(x) tmp = sqrt((x + x)); end
code[x_] := N[Sqrt[N[(x + x), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{x + x}
\end{array}
Initial program 52.1%
lift-+.f64N/A
lift-pow.f64N/A
unpow2N/A
lift-pow.f64N/A
unpow2N/A
distribute-lft-outN/A
lower-*.f64N/A
lower-+.f6452.1
Applied rewrites52.1%
lift-*.f64N/A
lift-+.f64N/A
distribute-lft-inN/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
lift-+.f643.3
Applied rewrites3.3%
herbie shell --seed 2024331
(FPCore (x)
:name "sqrt E (should all be same)"
:precision binary64
(sqrt (+ (pow x 2.0) (pow x 2.0))))