Remainder of division. \param x first operand \param y second operand \return remainder of floating point division. template typename enable ::type fmod(T x, U y) { return functions::fmod(x, y); }
| 2160 | /// \return remainder of floating point division. |
| 2161 | // template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); } |
| 2162 | MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(half x, half y) { return functions::fmod(x, y); } |
| 2163 | MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(half x, expr y) { return functions::fmod(x, y); } |
| 2164 | MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(expr x, half y) { return functions::fmod(x, y); } |
| 2165 | MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(expr x, expr y) { return functions::fmod(x, y); } |
no outgoing calls