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); }
| 3038 | /// \return \a x - \a y or 0 if difference negative |
| 3039 | // template<typename T,typename U> typename enable<expr,T,U>::type fdim(T x, U y) { return functions::fdim(x, y); } |
| 3040 | inline expr fdim(half x, half y) |
| 3041 | { |
| 3042 | return functions::fdim(x, y); |
| 3043 | } |
| 3044 | inline expr fdim(half x, expr y) |
| 3045 | { |
| 3046 | return functions::fdim(x, y); |