Modulo implementation. \param x first operand \param y second operand \return Half-precision division remainder stored in single-precision
| 1243 | /// \param y second operand |
| 1244 | /// \return Half-precision division remainder stored in single-precision |
| 1245 | static CAFFE_UTIL_HD expr fmod(float x, float y) { return expr(std::fmod(x, y)); } |
| 1246 | |
| 1247 | /// Remainder implementation. |
| 1248 | /// \param x first operand |