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

Function exp2

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

Binary exponential. \param arg function argument \return 2 raised to \a arg template typename enable ::type exp2(T arg) { return functions::exp2(arg); }

Source from the content-addressed store, hash-verified

2329 /// \return 2 raised to \a arg
2330// template<typename T> typename enable<expr,T>::type exp2(T arg) { return functions::exp2(arg); }
2331 inline expr exp2(half arg) { return functions::exp2(arg); }
2332 inline expr exp2(expr arg) { return functions::exp2(arg); }
2333
2334 /// Natural logorithm.

Callers 1

exp2Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected