add(multiplication:_:result:)
Calculates the single-precision element-wise addition of the product of a vector and a scalar value, and a vector.
Declaration
static func add<T, U, V>(multiplication: (a: T, b: Float), _ vector: U, result: inout V) where T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, T.Element == Float, U.Element == Float, V.Element == FloatParameters
- multiplication:
A tuple that contains the vectors
AandBinD = (A * B) + C. - vector:
The input scalar value
CinD = (A * B) + C. - result:
The output vector
DinD = (A * B) + C.
Discussion
This function calculates the element-wise product of vector A and scalar value B, adds vector C to the product, and writes the result to vector D.
for (n = 0; n < N; ++n)
D[n] = A[n] * B + C[n];[Image]
The following code shows an example of using this function:
let count = 5
let a: [Float] = [ 1, 2, 3, 4, 5]
let b: Float = 10
let c: [Float] = [ 5, 4, 3, 2, 1]
let d = [Float](unsafeUninitializedCapacity: count) {
buffer, initializedCount in
vDSP.add(multiplication: (a, b),
c,
result: &buffer)
initializedCount = count
}
// Prints "[15.0, 24.0, 33.0, 42.0, 51.0]".
print(d)