Remainder of division. \param x first operand \param y second operand \return remainder of floating point division. template typename enable ::type remainder(T x, U y) { return functions::remainder(x, y); }
| 2170 | /// \return remainder of floating point division. |
| 2171 | // template<typename T,typename U> typename enable<expr,T,U>::type remainder(T x, U y) { return functions::remainder(x, y); } |
| 2172 | MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(half x, half y) { return functions::remainder(x, y); } |
| 2173 | MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(half x, expr y) { return functions::remainder(x, y); } |
| 2174 | MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(expr x, half y) { return functions::remainder(x, y); } |
| 2175 | MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(expr x, expr y) { return functions::remainder(x, y); } |