MCPcopy Create free account
hub / github.com/MegEngine/MegEngine / cbrt

Function cbrt

dnn/include/megdnn/dtype/half.hpp:2306–2306  ·  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

2304 /// \return cubic root of \a arg
2305// template<typename T> typename enable<expr,T>::type cbrt(T arg) { return functions::cbrt(arg); }
2306 MEGDNN_HOST MEGDNN_DEVICE inline expr cbrt(half arg) { return functions::cbrt(arg); }
2307 MEGDNN_HOST MEGDNN_DEVICE inline expr cbrt(expr arg) { return functions::cbrt(arg); }
2308
2309 /// Hypotenuse function.

Callers 4

cbrtMethod · 0.70
TESTFunction · 0.50
applyMethod · 0.50
applyMethod · 0.50

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.40