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

Function exp

samples/common/half.h:3072–3075  ·  view source on GitHub ↗

Exponential function. \param arg function argument \return e raised to \a arg template typename enable ::type exp(T arg) { return functions::exp(arg); }

Source from the content-addressed store, hash-verified

3070/// \return e raised to \a arg
3071// template<typename T> typename enable<expr,T>::type exp(T arg) { return functions::exp(arg); }
3072inline expr exp(half arg)
3073{
3074 return functions::exp(arg);
3075}
3076inline expr exp(expr arg)
3077{
3078 return functions::exp(arg);

Callers 9

expMethod · 0.70
expm1Method · 0.70
exp2Method · 0.70
tgammaMethod · 0.70
erfMethod · 0.70
calculateSoftmaxFunction · 0.70
verifyOutputMethod · 0.50
verifyOutputMethod · 0.50
verifyOutputMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected