MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / fmax

Function fmax

include/half/half.hpp:2280–2280  ·  view source on GitHub ↗

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); }

Source from the content-addressed store, hash-verified

2278 /// \return maximum of operands
2279// template<typename T,typename U> typename result<T,U>::type fmax(T x, U y) { return binary_specialized<T,U>::fmax(x, y); }
2280 inline half fmax(half x, half y) { return binary_specialized<half,half>::fmax(x, y); }
2281 inline expr fmax(half x, expr y) { return binary_specialized<half,expr>::fmax(x, y); }
2282 inline expr fmax(expr x, half y) { return binary_specialized<expr,half>::fmax(x, y); }
2283 inline expr fmax(expr x, expr y) { return binary_specialized<expr,expr>::fmax(x, y); }

Callers 1

fmaxMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected