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

Function modf

include/half/half.hpp:2634–2634  ·  view source on GitHub ↗

Extract integer and fractional parts. \param arg number to decompress \param iptr address to store integer part at \return fractional part template typename enable ::type modf(T arg, half *iptr) { return functions::modf(arg, iptr); }

Source from the content-addressed store, hash-verified

2632 /// \return fractional part
2633// template<typename T> typename enable<half,T>::type modf(T arg, half *iptr) { return functions::modf(arg, iptr); }
2634 inline half modf(half arg, half *iptr) { return functions::modf(arg, iptr); }
2635 inline half modf(expr arg, half *iptr) { return functions::modf(arg, iptr); }
2636
2637 /// Multiply by power of two.

Callers 5

round_half_evenFunction · 0.85
float2half_implFunction · 0.85
lgammaMethod · 0.85
tgammaMethod · 0.85
round_half_evenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected