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

Function pow

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

Power function. \param base first argument \param exp second argument \return \a base raised to \a exp template typename enable ::type pow(T base, U exp) { return functions::pow(base, exp); }

Source from the content-addressed store, hash-verified

2393 /// \return \a base raised to \a exp
2394// template<typename T,typename U> typename enable<expr,T,U>::type pow(T base, U exp) { return functions::pow(base, exp); }
2395 inline expr pow(half base, half exp) { return functions::pow(base, exp); }
2396 inline expr pow(half base, expr exp) { return functions::pow(base, exp); }
2397 inline expr pow(expr base, half exp) { return functions::pow(base, exp); }
2398 inline expr pow(expr base, expr exp) { return functions::pow(base, exp); }

Callers 15

normalize_floatFunction · 0.85
configureMethod · 0.85
validateMethod · 0.85
configureMethod · 0.85
validateMethod · 0.85
arithm_opFunction · 0.85
setup_quantizationMethod · 0.85
setup_quantizationMethod · 0.85
setup_quantizationMethod · 0.85
setup_quantizationMethod · 0.85
setup_quantizationMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected