Contents

add(multiplication:multiplication:result:)

Calculates the single-precision element-wise product of a vector and a vector, added to a second product of a vector and a vector.

Declaration

static func add<R, S, T, U, V>(multiplication multiplicationAB: (a: R, b: S), multiplication multiplicationCD: (c: T, d: U), result: inout V) where R : AccelerateBuffer, S : AccelerateBuffer, T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, R.Element == Float, S.Element == Float, T.Element == Float, U.Element == Float, V.Element == Float

See Also

Addition