
(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 7 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) (/ (* x -2.0) (sqrt 2.0)) (* (pow x 0.75) (pow (* x 4.0) 0.25))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = (x * -2.0) / sqrt(2.0);
} else {
tmp = pow(x, 0.75) * pow((x * 4.0), 0.25);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-5d-310)) then
tmp = (x * (-2.0d0)) / sqrt(2.0d0)
else
tmp = (x ** 0.75d0) * ((x * 4.0d0) ** 0.25d0)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = (x * -2.0) / Math.sqrt(2.0);
} else {
tmp = Math.pow(x, 0.75) * Math.pow((x * 4.0), 0.25);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = (x * -2.0) / math.sqrt(2.0) else: tmp = math.pow(x, 0.75) * math.pow((x * 4.0), 0.25) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(Float64(x * -2.0) / sqrt(2.0)); else tmp = Float64((x ^ 0.75) * (Float64(x * 4.0) ^ 0.25)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = (x * -2.0) / sqrt(2.0); else tmp = (x ^ 0.75) * ((x * 4.0) ^ 0.25); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[(x * -2.0), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(N[Power[x, 0.75], $MachinePrecision] * N[Power[N[(x * 4.0), $MachinePrecision], 0.25], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\frac{x \cdot -2}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;{x}^{0.75} \cdot {\left(x \cdot 4\right)}^{0.25}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 55.0%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Simplified99.3%
lift-sqrt.f64N/A
distribute-rgt-neg-inN/A
neg-sub0N/A
flip--N/A
+-lft-identityN/A
associate-*r/N/A
lower-/.f64N/A
lower-*.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-sqrt.f64N/A
rem-square-sqrtN/A
metadata-eval99.4
Applied egg-rr99.4%
if -4.999999999999985e-310 < x Initial program 52.2%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f641.9
Simplified1.9%
lift-sqrt.f64N/A
distribute-rgt-neg-inN/A
neg-sub0N/A
flip--N/A
+-lft-identityN/A
associate-*r/N/A
lower-/.f64N/A
lower-*.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-sqrt.f64N/A
rem-square-sqrtN/A
metadata-eval1.9
Applied egg-rr1.9%
Applied egg-rr99.5%
Final simplification99.5%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (/ (* x -2.0) (sqrt 2.0)) (/ (* x 2.0) (sqrt 2.0))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = (x * -2.0) / sqrt(2.0);
} 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 = (x * (-2.0d0)) / sqrt(2.0d0)
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 = (x * -2.0) / Math.sqrt(2.0);
} else {
tmp = (x * 2.0) / Math.sqrt(2.0);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = (x * -2.0) / math.sqrt(2.0) else: tmp = (x * 2.0) / math.sqrt(2.0) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(Float64(x * -2.0) / sqrt(2.0)); 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 = (x * -2.0) / sqrt(2.0); else tmp = (x * 2.0) / sqrt(2.0); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[(x * -2.0), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $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}:\\
\;\;\;\;\frac{x \cdot -2}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;\frac{x \cdot 2}{\sqrt{2}}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 55.0%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Simplified99.3%
lift-sqrt.f64N/A
distribute-rgt-neg-inN/A
neg-sub0N/A
flip--N/A
+-lft-identityN/A
associate-*r/N/A
lower-/.f64N/A
lower-*.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-sqrt.f64N/A
rem-square-sqrtN/A
metadata-eval99.4
Applied egg-rr99.4%
if -4.999999999999985e-310 < x Initial program 52.2%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f641.9
Simplified1.9%
lift-sqrt.f64N/A
distribute-rgt-neg-inN/A
neg-sub0N/A
flip--N/A
+-lft-identityN/A
associate-*r/N/A
lower-/.f64N/A
lower-*.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-sqrt.f64N/A
rem-square-sqrtN/A
metadata-eval1.9
Applied egg-rr1.9%
Applied egg-rr99.3%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (/ (* x -2.0) (sqrt 2.0)) (* x (/ 2.0 (sqrt 2.0)))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = (x * -2.0) / sqrt(2.0);
} 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 = (x * (-2.0d0)) / sqrt(2.0d0)
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 = (x * -2.0) / Math.sqrt(2.0);
} else {
tmp = x * (2.0 / Math.sqrt(2.0));
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = (x * -2.0) / math.sqrt(2.0) else: tmp = x * (2.0 / math.sqrt(2.0)) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(Float64(x * -2.0) / sqrt(2.0)); else tmp = Float64(x * Float64(2.0 / sqrt(2.0))); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = (x * -2.0) / sqrt(2.0); else tmp = x * (2.0 / sqrt(2.0)); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], N[(N[(x * -2.0), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(x * N[(2.0 / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\frac{x \cdot -2}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{2}{\sqrt{2}}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 55.0%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Simplified99.3%
lift-sqrt.f64N/A
distribute-rgt-neg-inN/A
neg-sub0N/A
flip--N/A
+-lft-identityN/A
associate-*r/N/A
lower-/.f64N/A
lower-*.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-sqrt.f64N/A
rem-square-sqrtN/A
metadata-eval99.4
Applied egg-rr99.4%
if -4.999999999999985e-310 < x Initial program 52.2%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f641.9
Simplified1.9%
Applied egg-rr99.2%
Final simplification99.3%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (- (* x (sqrt 2.0))) (* x (/ 2.0 (sqrt 2.0)))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = -(x * sqrt(2.0));
} 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 = -(x * sqrt(2.0d0))
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 = -(x * Math.sqrt(2.0));
} else {
tmp = x * (2.0 / Math.sqrt(2.0));
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = -(x * math.sqrt(2.0)) else: tmp = x * (2.0 / math.sqrt(2.0)) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(-Float64(x * sqrt(2.0))); else tmp = Float64(x * Float64(2.0 / sqrt(2.0))); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = -(x * sqrt(2.0)); else tmp = x * (2.0 / sqrt(2.0)); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], (-N[(x * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]), N[(x * N[(2.0 / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;-x \cdot \sqrt{2}\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{2}{\sqrt{2}}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 55.0%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Simplified99.3%
if -4.999999999999985e-310 < x Initial program 52.2%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f641.9
Simplified1.9%
Applied egg-rr99.2%
Final simplification99.2%
(FPCore (x) :precision binary64 (let* ((t_0 (* x (sqrt 2.0)))) (if (<= x -5e-310) (- t_0) t_0)))
double code(double x) {
double t_0 = x * sqrt(2.0);
double tmp;
if (x <= -5e-310) {
tmp = -t_0;
} else {
tmp = t_0;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: t_0
real(8) :: tmp
t_0 = x * sqrt(2.0d0)
if (x <= (-5d-310)) then
tmp = -t_0
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x) {
double t_0 = x * Math.sqrt(2.0);
double tmp;
if (x <= -5e-310) {
tmp = -t_0;
} else {
tmp = t_0;
}
return tmp;
}
def code(x): t_0 = x * math.sqrt(2.0) tmp = 0 if x <= -5e-310: tmp = -t_0 else: tmp = t_0 return tmp
function code(x) t_0 = Float64(x * sqrt(2.0)) tmp = 0.0 if (x <= -5e-310) tmp = Float64(-t_0); else tmp = t_0; end return tmp end
function tmp_2 = code(x) t_0 = x * sqrt(2.0); tmp = 0.0; if (x <= -5e-310) tmp = -t_0; else tmp = t_0; end tmp_2 = tmp; end
code[x_] := Block[{t$95$0 = N[(x * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -5e-310], (-t$95$0), t$95$0]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x \cdot \sqrt{2}\\
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;-t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 55.0%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f64N/A
lower-*.f64N/A
lower-sqrt.f6499.3
Simplified99.3%
if -4.999999999999985e-310 < x Initial program 52.2%
Taylor expanded in x around 0
lower-*.f64N/A
lower-sqrt.f6499.2
Simplified99.2%
(FPCore (x) :precision binary64 (if (<= x -4e-206) (sqrt 2.0) (* x (sqrt 2.0))))
double code(double x) {
double tmp;
if (x <= -4e-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 <= (-4d-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 <= -4e-206) {
tmp = Math.sqrt(2.0);
} else {
tmp = x * Math.sqrt(2.0);
}
return tmp;
}
def code(x): tmp = 0 if x <= -4e-206: tmp = math.sqrt(2.0) else: tmp = x * math.sqrt(2.0) return tmp
function code(x) tmp = 0.0 if (x <= -4e-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 <= -4e-206) tmp = sqrt(2.0); else tmp = x * sqrt(2.0); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -4e-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 \cdot 10^{-206}:\\
\;\;\;\;\sqrt{2}\\
\mathbf{else}:\\
\;\;\;\;x \cdot \sqrt{2}\\
\end{array}
\end{array}
if x < -4.00000000000000011e-206Initial program 61.5%
Applied egg-rr5.7%
if -4.00000000000000011e-206 < x Initial program 47.2%
Taylor expanded in x around 0
lower-*.f64N/A
lower-sqrt.f6488.7
Simplified88.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 53.6%
Applied egg-rr5.4%
herbie shell --seed 2024208
(FPCore (x)
:name "sqrt D (should all be same)"
:precision binary64
(sqrt (* 2.0 (pow x 2.0))))