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

Function fmin

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

2301 /// \return minimum of operands
2302// template<typename T,typename U> typename result<T,U>::type fmin(T x, U y) { return binary_specialized<T,U>::fmin(x, y); }
2303 inline half fmin(half x, half y) { return binary_specialized<half,half>::fmin(x, y); }
2304 inline expr fmin(half x, expr y) { return binary_specialized<half,expr>::fmin(x, y); }
2305 inline expr fmin(expr x, half y) { return binary_specialized<expr,half>::fmin(x, y); }
2306 inline expr fmin(expr x, expr y) { return binary_specialized<expr,expr>::fmin(x, y); }

Callers 2

fminMethod · 0.85
transformFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected