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 not stored for this graph (policy: none)