
(FPCore (x) :precision binary64 (* x (log x)))
double code(double x) {
return x * log(x);
}
real(8) function code(x)
real(8), intent (in) :: x
code = x * log(x)
end function
public static double code(double x) {
return x * Math.log(x);
}
def code(x): return x * math.log(x)
function code(x) return Float64(x * log(x)) end
function tmp = code(x) tmp = x * log(x); end
code[x_] := N[(x * N[Log[x], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \log x
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 2 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (* x (log x)))
double code(double x) {
return x * log(x);
}
real(8) function code(x)
real(8), intent (in) :: x
code = x * log(x)
end function
public static double code(double x) {
return x * Math.log(x);
}
def code(x): return x * math.log(x)
function code(x) return Float64(x * log(x)) end
function tmp = code(x) tmp = x * log(x); end
code[x_] := N[(x * N[Log[x], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \log x
\end{array}
(FPCore (x) :precision binary64 (* (log (/ 1.0 x)) (- x)))
double code(double x) {
return log((1.0 / x)) * -x;
}
real(8) function code(x)
real(8), intent (in) :: x
code = log((1.0d0 / x)) * -x
end function
public static double code(double x) {
return Math.log((1.0 / x)) * -x;
}
def code(x): return math.log((1.0 / x)) * -x
function code(x) return Float64(log(Float64(1.0 / x)) * Float64(-x)) end
function tmp = code(x) tmp = log((1.0 / x)) * -x; end
code[x_] := N[(N[Log[N[(1.0 / x), $MachinePrecision]], $MachinePrecision] * (-x)), $MachinePrecision]
\begin{array}{l}
\\
\log \left(\frac{1}{x}\right) \cdot \left(-x\right)
\end{array}
Initial program 99.6%
Taylor expanded in x around inf 99.6%
Final simplification99.6%
(FPCore (x) :precision binary64 (* x (log x)))
double code(double x) {
return x * log(x);
}
real(8) function code(x)
real(8), intent (in) :: x
code = x * log(x)
end function
public static double code(double x) {
return x * Math.log(x);
}
def code(x): return x * math.log(x)
function code(x) return Float64(x * log(x)) end
function tmp = code(x) tmp = x * log(x); end
code[x_] := N[(x * N[Log[x], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \log x
\end{array}
Initial program 99.6%
Final simplification99.6%
herbie shell --seed 2023196
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))