MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / fmax

Function fmax

extern/half/include/half.hpp:2293–2293  ·  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

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

Callers 5

fmaxMethod · 0.85
transformFunction · 0.85
max_valFunction · 0.85
max_valFunction · 0.85
calcOrientationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected