Cubic root. \param arg function argument \return cubic root of \a arg template typename enable ::type cbrt(T arg) { return functions::cbrt(arg); }
| 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. |