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

Function tanh

include/half/half.hpp:2478–2478  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

2476 /// \return hyperbolic tangent value of \a arg
2477// template<typename T> typename enable<expr,T>::type tanh(T arg) { return functions::tanh(arg); }
2478 inline expr tanh(half arg) { return functions::tanh(arg); }
2479 inline expr tanh(expr arg) { return functions::tanh(arg); }
2480
2481 /// Hyperbolic area sine.

Callers 8

activationFunction · 0.85
init_lutFunction · 0.85
activate_floatFunction · 0.85
tanhMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected