
(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 6 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 54.1%
unpow2N/A
unpow2N/A
accelerator-lowering-hypot.f64100.0
Applied egg-rr100.0%
(FPCore (x) :precision binary64 (if (<= x -5e-310) (- (* x (sqrt 2.0))) (* (sqrt (+ x x)) (sqrt x))))
double code(double x) {
double tmp;
if (x <= -5e-310) {
tmp = -(x * sqrt(2.0));
} else {
tmp = sqrt((x + x)) * sqrt(x);
}
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 = sqrt((x + x)) * sqrt(x)
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 = Math.sqrt((x + x)) * Math.sqrt(x);
}
return tmp;
}
def code(x): tmp = 0 if x <= -5e-310: tmp = -(x * math.sqrt(2.0)) else: tmp = math.sqrt((x + x)) * math.sqrt(x) return tmp
function code(x) tmp = 0.0 if (x <= -5e-310) tmp = Float64(-Float64(x * sqrt(2.0))); else tmp = Float64(sqrt(Float64(x + x)) * sqrt(x)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -5e-310) tmp = -(x * sqrt(2.0)); else tmp = sqrt((x + x)) * sqrt(x); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -5e-310], (-N[(x * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]), N[(N[Sqrt[N[(x + x), $MachinePrecision]], $MachinePrecision] * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;-x \cdot \sqrt{2}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{x + x} \cdot \sqrt{x}\\
\end{array}
\end{array}
if x < -4.999999999999985e-310Initial program 52.0%
Taylor expanded in x around -inf
mul-1-negN/A
neg-lowering-neg.f64N/A
*-lowering-*.f64N/A
sqrt-lowering-sqrt.f6499.3
Simplified99.3%
if -4.999999999999985e-310 < x Initial program 56.5%
unpow2N/A
unpow2N/A
distribute-lft-outN/A
*-lowering-*.f64N/A
+-lowering-+.f6456.5
Applied egg-rr56.5%
pow1/2N/A
unpow-prod-downN/A
*-commutativeN/A
*-lowering-*.f64N/A
Applied egg-rr99.4%
(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 52.0%
Taylor expanded in x around -inf
mul-1-negN/A
neg-lowering-neg.f64N/A
*-lowering-*.f64N/A
sqrt-lowering-sqrt.f6499.3
Simplified99.3%
if -4.999999999999985e-310 < x Initial program 56.5%
Taylor expanded in x around 0
*-lowering-*.f64N/A
sqrt-lowering-sqrt.f6499.3
Simplified99.3%
(FPCore (x) :precision binary64 (if (<= x 3.95e-206) 0.0 (sqrt (+ x x))))
double code(double x) {
double tmp;
if (x <= 3.95e-206) {
tmp = 0.0;
} else {
tmp = sqrt((x + x));
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= 3.95d-206) then
tmp = 0.0d0
else
tmp = sqrt((x + x))
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= 3.95e-206) {
tmp = 0.0;
} else {
tmp = Math.sqrt((x + x));
}
return tmp;
}
def code(x): tmp = 0 if x <= 3.95e-206: tmp = 0.0 else: tmp = math.sqrt((x + x)) return tmp
function code(x) tmp = 0.0 if (x <= 3.95e-206) tmp = 0.0; else tmp = sqrt(Float64(x + x)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= 3.95e-206) tmp = 0.0; else tmp = sqrt((x + x)); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, 3.95e-206], 0.0, N[Sqrt[N[(x + x), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq 3.95 \cdot 10^{-206}:\\
\;\;\;\;0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{x + x}\\
\end{array}
\end{array}
if x < 3.9500000000000001e-206Initial program 47.0%
unpow2N/A
unpow2N/A
distribute-lft-outN/A
*-lowering-*.f64N/A
+-lowering-+.f6447.0
Applied egg-rr47.0%
sqrt-lowering-sqrt.f64N/A
distribute-lft-inN/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
+-lowering-+.f640.6
Applied egg-rr0.6%
pow1/2N/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-eval3.8
Applied egg-rr3.8%
if 3.9500000000000001e-206 < x Initial program 65.4%
unpow2N/A
unpow2N/A
distribute-lft-outN/A
*-lowering-*.f64N/A
+-lowering-+.f6465.4
Applied egg-rr65.4%
sqrt-lowering-sqrt.f64N/A
distribute-lft-inN/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
+-lowering-+.f647.2
Applied egg-rr7.2%
(FPCore (x) :precision binary64 (* x (sqrt 2.0)))
double code(double x) {
return x * sqrt(2.0);
}
real(8) function code(x)
real(8), intent (in) :: x
code = x * sqrt(2.0d0)
end function
public static double code(double x) {
return x * Math.sqrt(2.0);
}
def code(x): return x * math.sqrt(2.0)
function code(x) return Float64(x * sqrt(2.0)) end
function tmp = code(x) tmp = x * sqrt(2.0); end
code[x_] := N[(x * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \sqrt{2}
\end{array}
Initial program 54.1%
Taylor expanded in x around 0
*-lowering-*.f64N/A
sqrt-lowering-sqrt.f6445.9
Simplified45.9%
(FPCore (x) :precision binary64 0.0)
double code(double x) {
return 0.0;
}
real(8) function code(x)
real(8), intent (in) :: x
code = 0.0d0
end function
public static double code(double x) {
return 0.0;
}
def code(x): return 0.0
function code(x) return 0.0 end
function tmp = code(x) tmp = 0.0; end
code[x_] := 0.0
\begin{array}{l}
\\
0
\end{array}
Initial program 54.1%
unpow2N/A
unpow2N/A
distribute-lft-outN/A
*-lowering-*.f64N/A
+-lowering-+.f6454.1
Applied egg-rr54.1%
sqrt-lowering-sqrt.f64N/A
distribute-lft-inN/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
+-lowering-+.f643.1
Applied egg-rr3.1%
pow1/2N/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-eval3.5
Applied egg-rr3.5%
herbie shell --seed 2024204
(FPCore (x)
:name "sqrt E (should all be same)"
:precision binary64
(sqrt (+ (pow x 2.0) (pow x 2.0))))