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

Function atanh

samples/common/half.h:3413–3416  ·  view source on GitHub ↗

Hyperbolic area tangent. \param arg function argument \return area tangent value of \a arg template typename enable ::type atanh(T arg) { return functions::atanh(arg); }

Source from the content-addressed store, hash-verified

3411/// \return area tangent value of \a arg
3412// template<typename T> typename enable<expr,T>::type atanh(T arg) { return functions::atanh(arg); }
3413inline expr atanh(half arg)
3414{
3415 return functions::atanh(arg);
3416}
3417inline expr atanh(expr arg)
3418{
3419 return functions::atanh(arg);

Callers 1

atanhMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected