MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / fmod

Function fmod

samples/common/half.h:2885–2888  ·  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

2883/// \return remainder of floating point division.
2884// template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); }
2885inline expr fmod(half x, half y)
2886{
2887 return functions::fmod(x, y);
2888}
2889inline expr fmod(half x, expr y)
2890{
2891 return functions::fmod(x, y);

Callers 4

fmodMethod · 0.70
remainderMethod · 0.70
remquoMethod · 0.70
tgammaMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected