MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / fmod

Function fmod

include/half/half.hpp:2234–2234  ·  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

2232 /// \return remainder of floating point division.
2233// template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); }
2234 inline expr fmod(half x, half y) { return functions::fmod(x, y); }
2235 inline expr fmod(half x, expr y) { return functions::fmod(x, y); }
2236 inline expr fmod(expr x, half y) { return functions::fmod(x, y); }
2237 inline expr fmod(expr x, expr y) { return functions::fmod(x, y); }

Callers 6

round_half_evenFunction · 0.85
fmodMethod · 0.85
remainderMethod · 0.85
remquoMethod · 0.85
tgammaMethod · 0.85
round_half_evenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected