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

Function fma

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

Fused multiply add. \param x first operand \param y second operand \param z third operand \return ( \a x * \a y ) + \a z rounded as one operation. template typename enable ::type fma(T x, U y, V z) { return functions::fma(x, y, z); }

Source from the content-addressed store, hash-verified

2264 /// \return ( \a x * \a y ) + \a z rounded as one operation.
2265// template<typename T,typename U,typename V> typename enable<expr,T,U,V>::type fma(T x, U y, V z) { return functions::fma(x, y, z); }
2266 inline expr fma(half x, half y, half z) { return functions::fma(x, y, z); }
2267 inline expr fma(half x, half y, expr z) { return functions::fma(x, y, z); }
2268 inline expr fma(half x, expr y, half z) { return functions::fma(x, y, z); }
2269 inline expr fma(half x, expr y, expr z) { return functions::fma(x, y, z); }

Callers 1

fmaMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected