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

Function acosh

samples/common/half.h:3400–3403  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

3398/// \return area cosine value of \a arg
3399// template<typename T> typename enable<expr,T>::type acosh(T arg) { return functions::acosh(arg); }
3400inline expr acosh(half arg)
3401{
3402 return functions::acosh(arg);
3403}
3404inline expr acosh(expr arg)
3405{
3406 return functions::acosh(arg);

Callers 1

acoshMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected