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

Function remainder

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

2242 /// \return remainder of floating point division.
2243// template<typename T,typename U> typename enable<expr,T,U>::type remainder(T x, U y) { return functions::remainder(x, y); }
2244 inline expr remainder(half x, half y) { return functions::remainder(x, y); }
2245 inline expr remainder(half x, expr y) { return functions::remainder(x, y); }
2246 inline expr remainder(expr x, half y) { return functions::remainder(x, y); }
2247 inline expr remainder(expr x, expr y) { return functions::remainder(x, y); }

Callers 1

remainderMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected