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

Function cbrt

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

Cubic root. \param arg function argument \return cubic root of \a arg template typename enable ::type cbrt(T arg) { return functions::cbrt(arg); }

Source from the content-addressed store, hash-verified

2375 /// \return cubic root of \a arg
2376// template<typename T> typename enable<expr,T>::type cbrt(T arg) { return functions::cbrt(arg); }
2377 inline expr cbrt(half arg) { return functions::cbrt(arg); }
2378 inline expr cbrt(expr arg) { return functions::cbrt(arg); }
2379
2380 /// Hypotenuse function.

Callers 1

cbrtMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected