
(FPCore (x) :precision binary64 (sqrt (* 2.0 (pow x 2.0))))
double code(double x) {
return sqrt((2.0 * pow(x, 2.0)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt((2.0d0 * (x ** 2.0d0)))
end function
public static double code(double x) {
return Math.sqrt((2.0 * Math.pow(x, 2.0)));
}
def code(x): return math.sqrt((2.0 * math.pow(x, 2.0)))
function code(x) return sqrt(Float64(2.0 * (x ^ 2.0))) end
function tmp = code(x) tmp = sqrt((2.0 * (x ^ 2.0))); end
code[x_] := N[Sqrt[N[(2.0 * N[Power[x, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2 \cdot {x}^{2}}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (sqrt (* 2.0 (pow x 2.0))))
double code(double x) {
return sqrt((2.0 * pow(x, 2.0)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt((2.0d0 * (x ** 2.0d0)))
end function
public static double code(double x) {
return Math.sqrt((2.0 * Math.pow(x, 2.0)));
}
def code(x): return math.sqrt((2.0 * math.pow(x, 2.0)))
function code(x) return sqrt(Float64(2.0 * (x ^ 2.0))) end
function tmp = code(x) tmp = sqrt((2.0 * (x ^ 2.0))); end
code[x_] := N[Sqrt[N[(2.0 * N[Power[x, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2 \cdot {x}^{2}}
\end{array}
(FPCore (x) :precision binary64 (if (<= x -5e-310) (* (* (pow 2.0 0.125) (* x (pow 2.0 0.25))) (- (pow 2.0 0.125))) (* (sqrt (* x 2.0)) (sqrt x))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = (pow(2.0, 0.125) * (x * pow(2.0, 0.25))) * -pow(2.0, 0.125);
} else {
tmp = sqrt((x * 2.0)) * sqrt(x);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-5d-310)) then
tmp = ((2.0d0 ** 0.125d0) * (x * (2.0d0 ** 0.25d0))) * -(2.0d0 ** 0.125d0)
else
tmp = sqrt((x * 2.0d0)) * sqrt(x)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = (Math.pow(2.0, 0.125) * (x * Math.pow(2.0, 0.25))) * -Math.pow(2.0, 0.125);
} else {
tmp = Math.sqrt((x * 2.0)) * Math.sqrt(x);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = (math.pow(2.0, 0.125) * (x * math.pow(2.0, 0.25))) * -math.pow(2.0, 0.125) else: tmp = math.sqrt((x * 2.0)) * math.sqrt(x) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(Float64((2.0 ^ 0.125) * Float64(x * (2.0 ^ 0.25))) * Float64(-(2.0 ^ 0.125))); else tmp = Float64(sqrt(Float64(x * 2.0)) * sqrt(x)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = ((2.0 ^ 0.125) * (x * (2.0 ^ 0.25))) * -(2.0 ^ 0.125); else tmp = sqrt((x * 2.0)) * sqrt(x); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[(N[Power[2.0, 0.125], $MachinePrecision] * N[(x * N[Power[2.0, 0.25], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * (-N[Power[2.0, 0.125], $MachinePrecision])), $MachinePrecision], N[(N[Sqrt[N[(x * 2.0), $MachinePrecision]], $MachinePrecision] * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\left({2}^{0.125} \cdot \left(x \cdot {2}^{0.25}\right)\right) \cdot \left(-{2}^{0.125}\right)\\
\mathbf{else}:\\
\;\;\;\;\sqrt{x \cdot 2} \cdot \sqrt{x}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 51.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Applied rewrites99.3%
pow1/2N/A
sqr-powN/A
associate-*r*N/A
distribute-lft-neg-inN/A
distribute-lft-neg-outN/A
*-commutativeN/A
sqr-powN/A
*-commutativeN/A
associate-*l*N/A
lower-*.f64N/A
lower-pow.f64N/A
metadata-evalN/A
metadata-evalN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites99.4%
if -4.999999999999985e-310 < x Initial program 44.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f642.4
Applied rewrites2.4%
lift-sqrt.f64N/A
lift-*.f64N/A
+-lft-identityN/A
flip3-+N/A
distribute-neg-fracN/A
Applied rewrites99.5%
Final simplification99.5%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (* (sqrt 2.0) (- x)) (* (sqrt (* x 2.0)) (sqrt x))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = sqrt(2.0) * -x;
} else {
tmp = sqrt((x * 2.0)) * sqrt(x);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-5d-310)) then
tmp = sqrt(2.0d0) * -x
else
tmp = sqrt((x * 2.0d0)) * sqrt(x)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = Math.sqrt(2.0) * -x;
} else {
tmp = Math.sqrt((x * 2.0)) * Math.sqrt(x);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = math.sqrt(2.0) * -x else: tmp = math.sqrt((x * 2.0)) * math.sqrt(x) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(sqrt(2.0) * Float64(-x)); else tmp = Float64(sqrt(Float64(x * 2.0)) * sqrt(x)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = sqrt(2.0) * -x; else tmp = sqrt((x * 2.0)) * sqrt(x); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[Sqrt[2.0], $MachinePrecision] * (-x)), $MachinePrecision], N[(N[Sqrt[N[(x * 2.0), $MachinePrecision]], $MachinePrecision] * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\sqrt{2} \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\sqrt{x \cdot 2} \cdot \sqrt{x}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 51.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Applied rewrites99.3%
if -4.999999999999985e-310 < x Initial program 44.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f642.4
Applied rewrites2.4%
lift-sqrt.f64N/A
lift-*.f64N/A
+-lft-identityN/A
flip3-+N/A
distribute-neg-fracN/A
Applied rewrites99.5%
Final simplification99.4%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (* (sqrt 2.0) (- x)) (/ (* x 2.0) (sqrt 2.0))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = sqrt(2.0) * -x;
} else {
tmp = (x * 2.0) / sqrt(2.0);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-5d-310)) then
tmp = sqrt(2.0d0) * -x
else
tmp = (x * 2.0d0) / sqrt(2.0d0)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = Math.sqrt(2.0) * -x;
} else {
tmp = (x * 2.0) / Math.sqrt(2.0);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = math.sqrt(2.0) * -x else: tmp = (x * 2.0) / math.sqrt(2.0) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(sqrt(2.0) * Float64(-x)); else tmp = Float64(Float64(x * 2.0) / sqrt(2.0)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = sqrt(2.0) * -x; else tmp = (x * 2.0) / sqrt(2.0); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[Sqrt[2.0], $MachinePrecision] * (-x)), $MachinePrecision], N[(N[(x * 2.0), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\sqrt{2} \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{x \cdot 2}{\sqrt{2}}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 51.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Applied rewrites99.3%
if -4.999999999999985e-310 < x Initial program 44.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f642.4
Applied rewrites2.4%
lift-sqrt.f64N/A
lift-*.f642.4
+-lft-identityN/A
flip3-+N/A
metadata-evalN/A
+-lft-identityN/A
sqr-powN/A
pow-prod-downN/A
sqr-negN/A
lift-neg.f64N/A
lift-neg.f64N/A
pow-prod-downN/A
sqr-powN/A
lift-neg.f64N/A
cube-negN/A
+-lft-identityN/A
metadata-evalN/A
Applied rewrites99.3%
lift-sqrt.f64N/A
associate-/l*N/A
frac-2negN/A
metadata-evalN/A
associate-*r/N/A
lift-*.f64N/A
distribute-neg-frac2N/A
remove-double-negN/A
lower-/.f6499.3
Applied rewrites99.3%
Final simplification99.3%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (* (sqrt 2.0) (- x)) (* x (sqrt 2.0))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = sqrt(2.0) * -x;
} else {
tmp = x * sqrt(2.0);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-5d-310)) then
tmp = sqrt(2.0d0) * -x
else
tmp = x * sqrt(2.0d0)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = Math.sqrt(2.0) * -x;
} else {
tmp = x * Math.sqrt(2.0);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = math.sqrt(2.0) * -x else: tmp = x * math.sqrt(2.0) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(sqrt(2.0) * Float64(-x)); else tmp = Float64(x * sqrt(2.0)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = sqrt(2.0) * -x; else tmp = x * sqrt(2.0); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[Sqrt[2.0], $MachinePrecision] * (-x)), $MachinePrecision], N[(x * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\sqrt{2} \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \sqrt{2}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 51.9%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Applied rewrites99.3%
if -4.999999999999985e-310 < x Initial program 44.9%
Taylor expanded in x around 0
lower-*.f64N/A
lower-sqrt.f6499.3
Applied rewrites99.3%
Final simplification99.3%
(FPCore (x) :precision binary64 (if (<= x -4.1e-206) (sqrt 2.0) (* x (sqrt 2.0))))
double code(double x) {
double tmp;
if (x <= -4.1e-206) {
tmp = sqrt(2.0);
} else {
tmp = x * sqrt(2.0);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-4.1d-206)) then
tmp = sqrt(2.0d0)
else
tmp = x * sqrt(2.0d0)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -4.1e-206) {
tmp = Math.sqrt(2.0);
} else {
tmp = x * Math.sqrt(2.0);
}
return tmp;
}
def code(x): tmp = 0 if x <= -4.1e-206: tmp = math.sqrt(2.0) else: tmp = x * math.sqrt(2.0) return tmp
function code(x) tmp = 0.0 if (x <= -4.1e-206) tmp = sqrt(2.0); else tmp = Float64(x * sqrt(2.0)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -4.1e-206) tmp = sqrt(2.0); else tmp = x * sqrt(2.0); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -4.1e-206], N[Sqrt[2.0], $MachinePrecision], N[(x * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -4.1 \cdot 10^{-206}:\\
\;\;\;\;\sqrt{2}\\
\mathbf{else}:\\
\;\;\;\;x \cdot \sqrt{2}\\
\end{array}
\end{array}
if x < -4.10000000000000016e-206Initial program 60.1%
Applied rewrites5.6%
if -4.10000000000000016e-206 < x Initial program 40.3%
Taylor expanded in x around 0
lower-*.f64N/A
lower-sqrt.f6487.7
Applied rewrites87.7%
(FPCore (x) :precision binary64 (sqrt 2.0))
double code(double x) {
return sqrt(2.0);
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt(2.0d0)
end function
public static double code(double x) {
return Math.sqrt(2.0);
}
def code(x): return math.sqrt(2.0)
function code(x) return sqrt(2.0) end
function tmp = code(x) tmp = sqrt(2.0); end
code[x_] := N[Sqrt[2.0], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2}
\end{array}
Initial program 48.3%
Applied rewrites5.3%
herbie shell --seed 2024214
(FPCore (x)
:name "sqrt D (should all be same)"
:precision binary64
(sqrt (* 2.0 (pow x 2.0))))