Maximum of half expressions. \param x first operand \param y second operand \return maximum of operands template typename result ::type fmax(T x, U y) { return binary_specialized ::fmax(x, y); }
| 2291 | /// \return maximum of operands |
| 2292 | // template<typename T,typename U> typename result<T,U>::type fmax(T x, U y) { return binary_specialized<T,U>::fmax(x, y); } |
| 2293 | inline half fmax(half x, half y) { return binary_specialized<half,half>::fmax(x, y); } |
| 2294 | inline expr fmax(half x, expr y) { return binary_specialized<half,expr>::fmax(x, y); } |
| 2295 | inline expr fmax(expr x, half y) { return binary_specialized<expr,half>::fmax(x, y); } |
| 2296 | inline expr fmax(expr x, expr y) { return binary_specialized<expr,expr>::fmax(x, y); } |
no outgoing calls
no test coverage detected