Multiply-accumulate
From Free net encyclopedia
Revision as of 20:46, 8 April 2006; view current revision
←Older revision | Newer revision→
←Older revision | Newer revision→
The multiply-accumulate operation computes a product and adds it to an accumulator.
- <math>a \leftarrow a + b \times c</math>
When done with integers this operation is typically exact (computed modulo some power of 2).
When done with floating point numbers it might be performed with two roundings (typical in many DSPs) or with a single rounding, called a fused multiply-add (FMA).
[edit]