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

Function expm1

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

Exponential minus one. \param arg function argument \return e raised to \a arg subtracted by 1 template typename enable ::type expm1(T arg) { return functions::expm1(arg); }

Source from the content-addressed store, hash-verified

2322 /// \return e raised to \a arg subtracted by 1
2323// template<typename T> typename enable<expr,T>::type expm1(T arg) { return functions::expm1(arg); }
2324 inline expr expm1(half arg) { return functions::expm1(arg); }
2325 inline expr expm1(expr arg) { return functions::expm1(arg); }
2326
2327 /// Binary exponential.

Callers 1

expm1Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected