MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / lgamma

Function lgamma

samples/common/half.h:3456–3459  ·  view source on GitHub ↗

Natural logarithm of gamma function. \param arg function argument \return natural logarith of gamma function for \a arg template typename enable ::type lgamma(T arg) { return functions::lgamma(arg); }

Source from the content-addressed store, hash-verified

3454/// \return natural logarith of gamma function for \a arg
3455// template<typename T> typename enable<expr,T>::type lgamma(T arg) { return functions::lgamma(arg); }
3456inline expr lgamma(half arg)
3457{
3458 return functions::lgamma(arg);
3459}
3460inline expr lgamma(expr arg)
3461{
3462 return functions::lgamma(arg);

Callers 2

lgammaMethod · 0.70
tgammaMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected