
(FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (/ (* (exp (- (/ (* sinTheta_i sinTheta_O) v))) (/ (* cosTheta_i cosTheta_O) v)) (* (* (sinh (/ 1.0 v)) 2.0) v)))
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (expf(-((sinTheta_i * sinTheta_O) / v)) * ((cosTheta_i * cosTheta_O) / v)) / ((sinhf((1.0f / v)) * 2.0f) * v);
}
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (exp(-((sintheta_i * sintheta_o) / v)) * ((costheta_i * costheta_o) / v)) / ((sinh((1.0e0 / v)) * 2.0e0) * v)
end function
function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(exp(Float32(-Float32(Float32(sinTheta_i * sinTheta_O) / v))) * Float32(Float32(cosTheta_i * cosTheta_O) / v)) / Float32(Float32(sinh(Float32(Float32(1.0) / v)) * Float32(2.0)) * v)) end
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) tmp = (exp(-((sinTheta_i * sinTheta_O) / v)) * ((cosTheta_i * cosTheta_O) / v)) / ((sinh((single(1.0) / v)) * single(2.0)) * v); end
\begin{array}{l}
\\
\frac{e^{-\frac{sinTheta_i \cdot sinTheta_O}{v}} \cdot \frac{cosTheta_i \cdot cosTheta_O}{v}}{\left(\sinh \left(\frac{1}{v}\right) \cdot 2\right) \cdot v}
\end{array}
Sampling outcomes in binary32 precision:
Herbie found 12 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (/ (* (exp (- (/ (* sinTheta_i sinTheta_O) v))) (/ (* cosTheta_i cosTheta_O) v)) (* (* (sinh (/ 1.0 v)) 2.0) v)))
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (expf(-((sinTheta_i * sinTheta_O) / v)) * ((cosTheta_i * cosTheta_O) / v)) / ((sinhf((1.0f / v)) * 2.0f) * v);
}
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (exp(-((sintheta_i * sintheta_o) / v)) * ((costheta_i * costheta_o) / v)) / ((sinh((1.0e0 / v)) * 2.0e0) * v)
end function
function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(exp(Float32(-Float32(Float32(sinTheta_i * sinTheta_O) / v))) * Float32(Float32(cosTheta_i * cosTheta_O) / v)) / Float32(Float32(sinh(Float32(Float32(1.0) / v)) * Float32(2.0)) * v)) end
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) tmp = (exp(-((sinTheta_i * sinTheta_O) / v)) * ((cosTheta_i * cosTheta_O) / v)) / ((sinh((single(1.0) / v)) * single(2.0)) * v); end
\begin{array}{l}
\\
\frac{e^{-\frac{sinTheta_i \cdot sinTheta_O}{v}} \cdot \frac{cosTheta_i \cdot cosTheta_O}{v}}{\left(\sinh \left(\frac{1}{v}\right) \cdot 2\right) \cdot v}
\end{array}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (* (/ cosTheta_i v) (/ (/ 1.0 v) (* (sinh (/ 1.0 v)) 2.0))) (/ cosTheta_O (exp (/ sinTheta_i (/ v sinTheta_O))))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return ((cosTheta_i / v) * ((1.0f / v) / (sinhf((1.0f / v)) * 2.0f))) * (cosTheta_O / expf((sinTheta_i / (v / sinTheta_O))));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = ((costheta_i / v) * ((1.0e0 / v) / (sinh((1.0e0 / v)) * 2.0e0))) * (costheta_o / exp((sintheta_i / (v / sintheta_o))))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(Float32(cosTheta_i / v) * Float32(Float32(Float32(1.0) / v) / Float32(sinh(Float32(Float32(1.0) / v)) * Float32(2.0)))) * Float32(cosTheta_O / exp(Float32(sinTheta_i / Float32(v / sinTheta_O))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = ((cosTheta_i / v) * ((single(1.0) / v) / (sinh((single(1.0) / v)) * single(2.0)))) * (cosTheta_O / exp((sinTheta_i / (v / sinTheta_O))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\left(\frac{cosTheta_i}{v} \cdot \frac{\frac{1}{v}}{\sinh \left(\frac{1}{v}\right) \cdot 2}\right) \cdot \frac{cosTheta_O}{e^{\frac{sinTheta_i}{\frac{v}{sinTheta_O}}}}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
expm1-log1p-u98.2%
expm1-udef98.2%
*-commutative98.2%
Applied egg-rr98.2%
expm1-def98.2%
expm1-log1p98.5%
*-commutative98.5%
associate-*l*98.5%
*-commutative98.5%
Simplified98.5%
expm1-log1p-u98.5%
expm1-udef57.1%
times-frac57.1%
exp-prod57.1%
Applied egg-rr57.1%
expm1-def98.4%
expm1-log1p98.4%
associate-/r*98.4%
*-commutative98.4%
associate-*l*98.4%
exp-prod98.4%
associate-*l/98.4%
*-commutative98.4%
associate-/l*98.4%
Simplified98.4%
div-inv98.7%
times-frac98.7%
*-commutative98.7%
Applied egg-rr98.7%
Final simplification98.7%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (/ cosTheta_O (exp (/ sinTheta_i (/ v sinTheta_O)))) (/ (/ cosTheta_i v) (* v (* (sinh (/ 1.0 v)) 2.0)))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (cosTheta_O / expf((sinTheta_i / (v / sinTheta_O)))) * ((cosTheta_i / v) / (v * (sinhf((1.0f / v)) * 2.0f)));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (costheta_o / exp((sintheta_i / (v / sintheta_o)))) * ((costheta_i / v) / (v * (sinh((1.0e0 / v)) * 2.0e0)))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(cosTheta_O / exp(Float32(sinTheta_i / Float32(v / sinTheta_O)))) * Float32(Float32(cosTheta_i / v) / Float32(v * Float32(sinh(Float32(Float32(1.0) / v)) * Float32(2.0))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = (cosTheta_O / exp((sinTheta_i / (v / sinTheta_O)))) * ((cosTheta_i / v) / (v * (sinh((single(1.0) / v)) * single(2.0))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\frac{cosTheta_O}{e^{\frac{sinTheta_i}{\frac{v}{sinTheta_O}}}} \cdot \frac{\frac{cosTheta_i}{v}}{v \cdot \left(\sinh \left(\frac{1}{v}\right) \cdot 2\right)}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
expm1-log1p-u98.2%
expm1-udef98.2%
*-commutative98.2%
Applied egg-rr98.2%
expm1-def98.2%
expm1-log1p98.5%
*-commutative98.5%
associate-*l*98.5%
*-commutative98.5%
Simplified98.5%
expm1-log1p-u98.5%
expm1-udef57.1%
times-frac57.1%
exp-prod57.1%
Applied egg-rr57.1%
expm1-def98.4%
expm1-log1p98.4%
associate-/r*98.4%
*-commutative98.4%
associate-*l*98.4%
exp-prod98.4%
associate-*l/98.4%
*-commutative98.4%
associate-/l*98.4%
Simplified98.4%
Final simplification98.4%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (/ (* cosTheta_i cosTheta_O) (* (exp (* sinTheta_i (/ sinTheta_O v))) (* v (* (sinh (/ 1.0 v)) (* v 2.0))))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (cosTheta_i * cosTheta_O) / (expf((sinTheta_i * (sinTheta_O / v))) * (v * (sinhf((1.0f / v)) * (v * 2.0f))));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (costheta_i * costheta_o) / (exp((sintheta_i * (sintheta_o / v))) * (v * (sinh((1.0e0 / v)) * (v * 2.0e0))))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(cosTheta_i * cosTheta_O) / Float32(exp(Float32(sinTheta_i * Float32(sinTheta_O / v))) * Float32(v * Float32(sinh(Float32(Float32(1.0) / v)) * Float32(v * Float32(2.0)))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = (cosTheta_i * cosTheta_O) / (exp((sinTheta_i * (sinTheta_O / v))) * (v * (sinh((single(1.0) / v)) * (v * single(2.0)))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\frac{cosTheta_i \cdot cosTheta_O}{e^{sinTheta_i \cdot \frac{sinTheta_O}{v}} \cdot \left(v \cdot \left(\sinh \left(\frac{1}{v}\right) \cdot \left(v \cdot 2\right)\right)\right)}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
expm1-log1p-u98.2%
expm1-udef98.2%
*-commutative98.2%
Applied egg-rr98.2%
expm1-def98.2%
expm1-log1p98.5%
*-commutative98.5%
associate-*l*98.5%
*-commutative98.5%
Simplified98.5%
Final simplification98.5%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (/ (* cosTheta_i cosTheta_O) (* (* (sinh (/ 1.0 v)) (* v (* v 2.0))) (exp (* sinTheta_i (/ sinTheta_O v))))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (cosTheta_i * cosTheta_O) / ((sinhf((1.0f / v)) * (v * (v * 2.0f))) * expf((sinTheta_i * (sinTheta_O / v))));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (costheta_i * costheta_o) / ((sinh((1.0e0 / v)) * (v * (v * 2.0e0))) * exp((sintheta_i * (sintheta_o / v))))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(cosTheta_i * cosTheta_O) / Float32(Float32(sinh(Float32(Float32(1.0) / v)) * Float32(v * Float32(v * Float32(2.0)))) * exp(Float32(sinTheta_i * Float32(sinTheta_O / v))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = (cosTheta_i * cosTheta_O) / ((sinh((single(1.0) / v)) * (v * (v * single(2.0)))) * exp((sinTheta_i * (sinTheta_O / v))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\frac{cosTheta_i \cdot cosTheta_O}{\left(\sinh \left(\frac{1}{v}\right) \cdot \left(v \cdot \left(v \cdot 2\right)\right)\right) \cdot e^{sinTheta_i \cdot \frac{sinTheta_O}{v}}}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
Final simplification98.5%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (/ 1.0 (* v (- (exp (/ 1.0 v)) (exp (/ -1.0 v))))) (* (/ cosTheta_i v) cosTheta_O)))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (1.0f / (v * (expf((1.0f / v)) - expf((-1.0f / v))))) * ((cosTheta_i / v) * cosTheta_O);
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (1.0e0 / (v * (exp((1.0e0 / v)) - exp(((-1.0e0) / v))))) * ((costheta_i / v) * costheta_o)
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(Float32(1.0) / Float32(v * Float32(exp(Float32(Float32(1.0) / v)) - exp(Float32(Float32(-1.0) / v))))) * Float32(Float32(cosTheta_i / v) * cosTheta_O)) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = (single(1.0) / (v * (exp((single(1.0) / v)) - exp((single(-1.0) / v))))) * ((cosTheta_i / v) * cosTheta_O);
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\frac{1}{v \cdot \left(e^{\frac{1}{v}} - e^{\frac{-1}{v}}\right)} \cdot \left(\frac{cosTheta_i}{v} \cdot cosTheta_O\right)
\end{array}
Initial program 98.4%
*-commutative98.4%
associate-*r/98.4%
associate-/l*98.5%
associate-/r/98.5%
*-commutative98.5%
*-commutative98.5%
associate-*r*98.5%
associate-/l/98.5%
exp-neg98.5%
associate-/l/98.5%
associate-/r*98.5%
metadata-eval98.5%
associate-*l/98.5%
*-commutative98.5%
exp-prod98.5%
Simplified98.5%
Taylor expanded in sinTheta_O around 0 98.2%
rec-exp98.2%
distribute-neg-frac98.2%
metadata-eval98.2%
Simplified98.2%
Final simplification98.2%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (* cosTheta_i (/ cosTheta_O v)) (/ 1.0 (* v (- (exp (/ 1.0 v)) (exp (/ -1.0 v)))))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (cosTheta_i * (cosTheta_O / v)) * (1.0f / (v * (expf((1.0f / v)) - expf((-1.0f / v)))));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (costheta_i * (costheta_o / v)) * (1.0e0 / (v * (exp((1.0e0 / v)) - exp(((-1.0e0) / v)))))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(cosTheta_i * Float32(cosTheta_O / v)) * Float32(Float32(1.0) / Float32(v * Float32(exp(Float32(Float32(1.0) / v)) - exp(Float32(Float32(-1.0) / v)))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = (cosTheta_i * (cosTheta_O / v)) * (single(1.0) / (v * (exp((single(1.0) / v)) - exp((single(-1.0) / v)))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\left(cosTheta_i \cdot \frac{cosTheta_O}{v}\right) \cdot \frac{1}{v \cdot \left(e^{\frac{1}{v}} - e^{\frac{-1}{v}}\right)}
\end{array}
Initial program 98.4%
*-commutative98.4%
associate-*r/98.4%
*-commutative98.4%
associate-*l/98.4%
*-commutative98.4%
*-commutative98.4%
associate-*r*98.4%
associate-/l/98.4%
exp-neg98.4%
associate-/l/98.4%
associate-/r*98.4%
metadata-eval98.4%
associate-*l/98.4%
*-commutative98.4%
exp-prod98.4%
Simplified98.4%
Taylor expanded in sinTheta_O around 0 98.2%
rec-exp98.2%
distribute-neg-frac98.2%
metadata-eval98.2%
Simplified98.2%
Final simplification98.2%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (/ cosTheta_i (* v v)) (/ cosTheta_O (- (exp (/ 1.0 v)) (exp (/ -1.0 v))))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return (cosTheta_i / (v * v)) * (cosTheta_O / (expf((1.0f / v)) - expf((-1.0f / v))));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = (costheta_i / (v * v)) * (costheta_o / (exp((1.0e0 / v)) - exp(((-1.0e0) / v))))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(cosTheta_i / Float32(v * v)) * Float32(cosTheta_O / Float32(exp(Float32(Float32(1.0) / v)) - exp(Float32(Float32(-1.0) / v))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = (cosTheta_i / (v * v)) * (cosTheta_O / (exp((single(1.0) / v)) - exp((single(-1.0) / v))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\frac{cosTheta_i}{v \cdot v} \cdot \frac{cosTheta_O}{e^{\frac{1}{v}} - e^{\frac{-1}{v}}}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
Taylor expanded in sinTheta_O around 0 98.1%
times-frac98.0%
unpow298.0%
rec-exp98.0%
distribute-neg-frac98.0%
metadata-eval98.0%
Simplified98.0%
Final simplification98.0%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
(FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v)
:precision binary32
(let* ((t_0 (* (/ cosTheta_i v) cosTheta_O)))
(if (<= v 0.5012999773025513)
(* t_0 (/ 1.0 (* v (+ (exp (/ 1.0 v)) -1.0))))
(*
t_0
(+
0.5
(-
(/ 0.009722222222222222 (pow v 4.0))
(/ 0.08333333333333333 (* v v))))))))assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
float t_0 = (cosTheta_i / v) * cosTheta_O;
float tmp;
if (v <= 0.5012999773025513f) {
tmp = t_0 * (1.0f / (v * (expf((1.0f / v)) + -1.0f)));
} else {
tmp = t_0 * (0.5f + ((0.009722222222222222f / powf(v, 4.0f)) - (0.08333333333333333f / (v * v))));
}
return tmp;
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
real(4) :: t_0
real(4) :: tmp
t_0 = (costheta_i / v) * costheta_o
if (v <= 0.5012999773025513e0) then
tmp = t_0 * (1.0e0 / (v * (exp((1.0e0 / v)) + (-1.0e0))))
else
tmp = t_0 * (0.5e0 + ((0.009722222222222222e0 / (v ** 4.0e0)) - (0.08333333333333333e0 / (v * v))))
end if
code = tmp
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) t_0 = Float32(Float32(cosTheta_i / v) * cosTheta_O) tmp = Float32(0.0) if (v <= Float32(0.5012999773025513)) tmp = Float32(t_0 * Float32(Float32(1.0) / Float32(v * Float32(exp(Float32(Float32(1.0) / v)) + Float32(-1.0))))); else tmp = Float32(t_0 * Float32(Float32(0.5) + Float32(Float32(Float32(0.009722222222222222) / (v ^ Float32(4.0))) - Float32(Float32(0.08333333333333333) / Float32(v * v))))); end return tmp end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp_2 = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
t_0 = (cosTheta_i / v) * cosTheta_O;
tmp = single(0.0);
if (v <= single(0.5012999773025513))
tmp = t_0 * (single(1.0) / (v * (exp((single(1.0) / v)) + single(-1.0))));
else
tmp = t_0 * (single(0.5) + ((single(0.009722222222222222) / (v ^ single(4.0))) - (single(0.08333333333333333) / (v * v))));
end
tmp_2 = tmp;
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\begin{array}{l}
t_0 := \frac{cosTheta_i}{v} \cdot cosTheta_O\\
\mathbf{if}\;v \leq 0.5012999773025513:\\
\;\;\;\;t_0 \cdot \frac{1}{v \cdot \left(e^{\frac{1}{v}} + -1\right)}\\
\mathbf{else}:\\
\;\;\;\;t_0 \cdot \left(0.5 + \left(\frac{0.009722222222222222}{{v}^{4}} - \frac{0.08333333333333333}{v \cdot v}\right)\right)\\
\end{array}
\end{array}
if v < 0.501299977Initial program 98.2%
*-commutative98.2%
associate-*r/98.1%
associate-/l*98.2%
associate-/r/98.2%
*-commutative98.2%
*-commutative98.2%
associate-*r*98.2%
associate-/l/98.2%
exp-neg98.2%
associate-/l/98.2%
associate-/r*98.2%
metadata-eval98.2%
associate-*l/98.2%
*-commutative98.2%
exp-prod98.2%
Simplified98.2%
Taylor expanded in sinTheta_O around 0 97.9%
rec-exp97.9%
distribute-neg-frac97.9%
metadata-eval97.9%
Simplified97.9%
Taylor expanded in v around inf 74.3%
if 0.501299977 < v Initial program 98.7%
*-commutative98.7%
associate-*r/98.9%
associate-/l*98.9%
associate-/r/99.0%
*-commutative99.0%
*-commutative99.0%
associate-*r*99.0%
associate-/l/99.0%
exp-neg99.0%
associate-/l/99.0%
associate-/r*99.0%
metadata-eval99.0%
associate-*l/99.0%
*-commutative99.0%
exp-prod99.0%
Simplified99.0%
Taylor expanded in sinTheta_O around 0 98.7%
rec-exp98.7%
distribute-neg-frac98.7%
metadata-eval98.7%
Simplified98.7%
Taylor expanded in v around inf 79.2%
associate--l+79.2%
associate-*r/79.2%
metadata-eval79.2%
unpow279.2%
associate-*r/79.2%
metadata-eval79.2%
Simplified79.2%
Final simplification76.1%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (* (/ cosTheta_i v) cosTheta_O) (/ 1.0 (* v (+ (exp (/ 1.0 v)) -1.0)))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return ((cosTheta_i / v) * cosTheta_O) * (1.0f / (v * (expf((1.0f / v)) + -1.0f)));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = ((costheta_i / v) * costheta_o) * (1.0e0 / (v * (exp((1.0e0 / v)) + (-1.0e0))))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(Float32(cosTheta_i / v) * cosTheta_O) * Float32(Float32(1.0) / Float32(v * Float32(exp(Float32(Float32(1.0) / v)) + Float32(-1.0))))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = ((cosTheta_i / v) * cosTheta_O) * (single(1.0) / (v * (exp((single(1.0) / v)) + single(-1.0))));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\left(\frac{cosTheta_i}{v} \cdot cosTheta_O\right) \cdot \frac{1}{v \cdot \left(e^{\frac{1}{v}} + -1\right)}
\end{array}
Initial program 98.4%
*-commutative98.4%
associate-*r/98.4%
associate-/l*98.5%
associate-/r/98.5%
*-commutative98.5%
*-commutative98.5%
associate-*r*98.5%
associate-/l/98.5%
exp-neg98.5%
associate-/l/98.5%
associate-/r*98.5%
metadata-eval98.5%
associate-*l/98.5%
*-commutative98.5%
exp-prod98.5%
Simplified98.5%
Taylor expanded in sinTheta_O around 0 98.2%
rec-exp98.2%
distribute-neg-frac98.2%
metadata-eval98.2%
Simplified98.2%
Taylor expanded in v around inf 72.2%
Final simplification72.2%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* 0.5 (/ cosTheta_i (/ v cosTheta_O))))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return 0.5f * (cosTheta_i / (v / cosTheta_O));
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = 0.5e0 * (costheta_i / (v / costheta_o))
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(0.5) * Float32(cosTheta_i / Float32(v / cosTheta_O))) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = single(0.5) * (cosTheta_i / (v / cosTheta_O));
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
0.5 \cdot \frac{cosTheta_i}{\frac{v}{cosTheta_O}}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
Taylor expanded in v around inf 60.9%
associate-/l*60.9%
Simplified60.9%
Final simplification60.9%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (* (* (/ cosTheta_i v) cosTheta_O) 0.5))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return ((cosTheta_i / v) * cosTheta_O) * 0.5f;
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = ((costheta_i / v) * costheta_o) * 0.5e0
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(Float32(cosTheta_i / v) * cosTheta_O) * Float32(0.5)) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = ((cosTheta_i / v) * cosTheta_O) * single(0.5);
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\left(\frac{cosTheta_i}{v} \cdot cosTheta_O\right) \cdot 0.5
\end{array}
Initial program 98.4%
*-commutative98.4%
associate-*r/98.4%
associate-/l*98.5%
associate-/r/98.5%
*-commutative98.5%
*-commutative98.5%
associate-*r*98.5%
associate-/l/98.5%
exp-neg98.5%
associate-/l/98.5%
associate-/r*98.5%
metadata-eval98.5%
associate-*l/98.5%
*-commutative98.5%
exp-prod98.5%
Simplified98.5%
Taylor expanded in v around inf 60.9%
Final simplification60.9%
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function. (FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v) :precision binary32 (/ 0.5 (/ (/ v cosTheta_O) cosTheta_i)))
assert(cosTheta_i < cosTheta_O);
float code(float cosTheta_i, float cosTheta_O, float sinTheta_i, float sinTheta_O, float v) {
return 0.5f / ((v / cosTheta_O) / cosTheta_i);
}
NOTE: cosTheta_i and cosTheta_O should be sorted in increasing order before calling this function.
real(4) function code(costheta_i, costheta_o, sintheta_i, sintheta_o, v)
real(4), intent (in) :: costheta_i
real(4), intent (in) :: costheta_o
real(4), intent (in) :: sintheta_i
real(4), intent (in) :: sintheta_o
real(4), intent (in) :: v
code = 0.5e0 / ((v / costheta_o) / costheta_i)
end function
cosTheta_i, cosTheta_O = sort([cosTheta_i, cosTheta_O]) function code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v) return Float32(Float32(0.5) / Float32(Float32(v / cosTheta_O) / cosTheta_i)) end
cosTheta_i, cosTheta_O = num2cell(sort([cosTheta_i, cosTheta_O])){:}
function tmp = code(cosTheta_i, cosTheta_O, sinTheta_i, sinTheta_O, v)
tmp = single(0.5) / ((v / cosTheta_O) / cosTheta_i);
end
\begin{array}{l}
[cosTheta_i, cosTheta_O] = \mathsf{sort}([cosTheta_i, cosTheta_O])\\
\\
\frac{0.5}{\frac{\frac{v}{cosTheta_O}}{cosTheta_i}}
\end{array}
Initial program 98.4%
associate-*l/98.4%
times-frac98.5%
exp-neg98.5%
associate-*l/98.5%
*-lft-identity98.5%
associate-/l/98.5%
associate-*l*98.5%
associate-*l*98.5%
*-commutative98.5%
*-commutative98.5%
associate-*l/98.5%
Simplified98.5%
Taylor expanded in v around inf 60.9%
associate-/l*60.9%
Simplified60.9%
clear-num61.4%
un-div-inv61.4%
Applied egg-rr61.4%
Final simplification61.4%
herbie shell --seed 2023187
(FPCore (cosTheta_i cosTheta_O sinTheta_i sinTheta_O v)
:name "HairBSDF, Mp, upper"
:precision binary32
:pre (and (and (and (and (and (and (<= -1.0 cosTheta_i) (<= cosTheta_i 1.0)) (and (<= -1.0 cosTheta_O) (<= cosTheta_O 1.0))) (and (<= -1.0 sinTheta_i) (<= sinTheta_i 1.0))) (and (<= -1.0 sinTheta_O) (<= sinTheta_O 1.0))) (< 0.1 v)) (<= v 1.5707964))
(/ (* (exp (- (/ (* sinTheta_i sinTheta_O) v))) (/ (* cosTheta_i cosTheta_O) v)) (* (* (sinh (/ 1.0 v)) 2.0) v)))