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

Function fmod

dnn/include/megdnn/dtype/bfloat16.hpp:1712–1714  ·  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 fmod(T x, U y) { return functions::fmod(x, y); }

Source from the content-addressed store, hash-verified

1710// template<typename T,typename U> typename enable<expr,T,U>::type
1711// fmod(T x, U y) { return functions::fmod(x, y); }
1712MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(bfloat16 x, bfloat16 y) {
1713 return functions::fmod(x, y);
1714}
1715MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(bfloat16 x, expr y) {
1716 return functions::fmod(x, y);
1717}

Callers 1

fmodMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected