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

Function fmin

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

Minimum of half expressions. \param x first operand \param y second operand \return minimum of operands template typename result ::type fmin(T x, U y) { return binary_specialized ::fmin(x, y); }

Source from the content-addressed store, hash-verified

2288 /// \return minimum of operands
2289// template<typename T,typename U> typename result<T,U>::type fmin(T x, U y) { return binary_specialized<T,U>::fmin(x, y); }
2290 inline half fmin(half x, half y) { return binary_specialized<half,half>::fmin(x, y); }
2291 inline expr fmin(half x, expr y) { return binary_specialized<half,expr>::fmin(x, y); }
2292 inline expr fmin(expr x, half y) { return binary_specialized<expr,half>::fmin(x, y); }
2293 inline expr fmin(expr x, expr y) { return binary_specialized<expr,expr>::fmin(x, y); }

Callers 1

fminMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected