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); }
| 1710 | // template<typename T,typename U> typename enable<expr,T,U>::type |
| 1711 | // fmod(T x, U y) { return functions::fmod(x, y); } |
| 1712 | MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(bfloat16 x, bfloat16 y) { |
| 1713 | return functions::fmod(x, y); |
| 1714 | } |
| 1715 | MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(bfloat16 x, expr y) { |
| 1716 | return functions::fmod(x, y); |
| 1717 | } |