Multiply Accumulate
- Updated2023-02-17
- 2 minute(s) read
Multiply Accumulate
Computes the product of two numbers and adds it to an internal accumulator. Multiply Accumulate is a point-by-point node, meaning it accepts only scalars.

Inputs/Outputs

x
An input for this operation. You can pass scalar values one point at a time to the Multiply Accumulate node.
Default value: 0

y
An input for this operation. You can pass scalar values one point at a time to the Multiply Accumulate node.
Default value: 0

initial value
Initial value to which the internal accumulator gets reset.
Default value: 0

initialize?
A Boolean that determines whether the internal accumulator is reset to the initial value specified in initial value.
Values passed into the node are added to the internal accumulator until initialize? is set to True.
Default value: False

result
Output of the multiply accumulate operation.