Positive difference. \param x first operand \param y second operand \return \a x - \a y or 0 if difference negative template typename enable ::type fdim(T x, U y) { return functions::fdim(x, y); }
| 2298 | /// \return \a x - \a y or 0 if difference negative |
| 2299 | // template<typename T,typename U> typename enable<expr,T,U>::type fdim(T x, U y) { return functions::fdim(x, y); } |
| 2300 | inline expr fdim(half x, half y) { return functions::fdim(x, y); } |
| 2301 | inline expr fdim(half x, expr y) { return functions::fdim(x, y); } |
| 2302 | inline expr fdim(expr x, half y) { return functions::fdim(x, y); } |
| 2303 | inline expr fdim(expr x, expr y) { return functions::fdim(x, y); } |