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

Function remainder

dnn/include/megdnn/dtype/half.hpp:2172–2172  ·  view source on GitHub ↗

Remainder of division. \param x first operand \param y second operand \return remainder of floating point division. template typename enable ::type remainder(T x, U y) { return functions::remainder(x, y); }

Source from the content-addressed store, hash-verified

2170 /// \return remainder of floating point division.
2171// template<typename T,typename U> typename enable<expr,T,U>::type remainder(T x, U y) { return functions::remainder(x, y); }
2172 MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(half x, half y) { return functions::remainder(x, y); }
2173 MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(half x, expr y) { return functions::remainder(x, y); }
2174 MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(expr x, half y) { return functions::remainder(x, y); }
2175 MEGDNN_HOST MEGDNN_DEVICE inline expr remainder(expr x, expr y) { return functions::remainder(x, y); }

Callers 2

remainderMethod · 0.70
TESTFunction · 0.50

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.40