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

Function exp

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

Exponential function. \param arg function argument \return e raised to \a arg template typename enable ::type exp(T arg) { return functions::exp(arg); }

Source from the content-addressed store, hash-verified

2315 /// \return e raised to \a arg
2316// template<typename T> typename enable<expr,T>::type exp(T arg) { return functions::exp(arg); }
2317 inline expr exp(half arg) { return functions::exp(arg); }
2318 inline expr exp(expr arg) { return functions::exp(arg); }
2319
2320 /// Exponential minus one.

Callers 15

activationFunction · 0.85
exponentialFunction · 0.85
operator()Method · 0.85
SoftNMSFunction · 0.85
q8_prepare_lutFunction · 0.85
init_lutFunction · 0.85
neon_softmax_x_floatFunction · 0.85
neon_softmax_non_x_floatFunction · 0.85
neon_softmax_x_quantizedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected