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

Function fmod

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

2160 /// \return remainder of floating point division.
2161// template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); }
2162 MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(half x, half y) { return functions::fmod(x, y); }
2163 MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(half x, expr y) { return functions::fmod(x, y); }
2164 MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(expr x, half y) { return functions::fmod(x, y); }
2165 MEGDNN_HOST MEGDNN_DEVICE inline expr fmod(expr x, expr y) { return functions::fmod(x, y); }

Callers 9

fmodMethod · 0.70
remainderMethod · 0.70
remquoMethod · 0.70
tgammaMethod · 0.70
gen_svd_inputFunction · 0.50
do_modFunction · 0.50
do_update_checkerMethod · 0.50
TESTFunction · 0.50
round_half_to_evenFunction · 0.50

Calls

no outgoing calls

Tested by 4

gen_svd_inputFunction · 0.40
do_modFunction · 0.40
do_update_checkerMethod · 0.40
TESTFunction · 0.40