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

Function fmin

dnn/include/megdnn/dtype/half.hpp:2218–2218  ·  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

2216 /// \return minimum of operands
2217// template<typename T,typename U> typename result<T,U>::type fmin(T x, U y) { return binary_specialized<T,U>::fmin(x, y); }
2218 MEGDNN_HOST MEGDNN_DEVICE inline half fmin(half x, half y) { return binary_specialized<half,half>::fmin(x, y); }
2219 MEGDNN_HOST MEGDNN_DEVICE inline expr fmin(half x, expr y) { return binary_specialized<half,expr>::fmin(x, y); }
2220 MEGDNN_HOST MEGDNN_DEVICE inline expr fmin(expr x, half y) { return binary_specialized<expr,half>::fmin(x, y); }
2221 MEGDNN_HOST MEGDNN_DEVICE inline expr fmin(expr x, expr y) { return binary_specialized<expr,expr>::fmin(x, y); }

Callers 10

fminMethod · 0.70
TESTFunction · 0.50
repFunction · 0.50
execMethod · 0.50
quantizeMethod · 0.50
quantizeMethod · 0.50
quantizeMethod · 0.50
quantizeMethod · 0.50
quantizeMethod · 0.50
quantizeMethod · 0.50

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.40