MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / lgamma

Function lgamma

include/half/half.hpp:2524–2524  ·  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

2522 /// \return natural logarith of gamma function for \a arg
2523// template<typename T> typename enable<expr,T>::type lgamma(T arg) { return functions::lgamma(arg); }
2524 inline expr lgamma(half arg) { return functions::lgamma(arg); }
2525 inline expr lgamma(expr arg) { return functions::lgamma(arg); }
2526
2527 /// Gamma function.

Callers 2

lgammaMethod · 0.85
tgammaMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected