|
|
|
|
Multiply-accumulate
|
| |
|
| |
In computing, especially digital signal processing, multiply-accumulate is a common operation that computes the product of two numbers and adds that product to an accumulator.
When done with floating point numbers it might be performed with two roundings (typical in many DSPs) or with a single rounding. When performed with a single rounding, it is called a fused multiply-add (FMA) or fused multiply-accumulate (FMAC).
Modern computers may contain a dedicated multiply-accumulate unit, or "MAC-unit", consisting of a multiplier implemented in combinational logic followed by an adder and an accumulator register which stores the result when clocked.

Discussion
Ask a question about 'Multiply-accumulate'
Start a new discussion about 'Multiply-accumulate'
Answer questions from other users
|
Encyclopedia
In computing, especially digital signal processing, multiply-accumulate is a common operation that computes the product of two numbers and adds that product to an accumulator.
When done with floating point numbers it might be performed with two roundings (typical in many DSPs) or with a single rounding. When performed with a single rounding, it is called a fused multiply-add (FMA) or fused multiply-accumulate (FMAC).
Modern computers may contain a dedicated multiply-accumulate unit, or "MAC-unit", consisting of a multiplier implemented in combinational logic followed by an adder and an accumulator register which stores the result when clocked. The output of the register is fed back to one input of the adder, so that on each clock the output of the multiplier is added to the register. Combinational multipliers require a large amount of logic, but can compute a product much more quickly than the method of shifting and adding typical of earlier computers. The first processors to be equipped with MAC-units were digital signal processors, but the technique is now common in general-purpose processors too.
In floating-point arithmetic
When done with integers, the operation is typically exact (computed modulo some power of 2). However, floating-point numbers have only a certain amount of mathematical precision. That is, digital floating-point arithmetic is generally not associative or distributive. (See Floating point#Accuracy problems.)
Therefore, it makes a difference to the result whether the multiply-add is performed with two roundings, or in one operation with a single rounding. When performed with a single rounding, the operation is termed a fused multiply-add.
Fused multiply-add
A fused multiply-add is a floating-point multiply-add operation performed in one step, with a single rounding. That is, where an unfused multiply-add would compute the product , round it to N significant bits, add the result to a, and round back to N significant bits, a fused multiply-add would compute the entire sum to its full precision before rounding the final result down to N significant bits.
When implemented in a microprocessor, this is typically faster than a multiply operation followed by an add. Because of this instruction there is no need for a hardware divide or square root unit, since they can both be implemented efficiently in software using the FMA.
A fast FMA can speed up and improve the accuracy of many computations which involve the accumulation of products:
The FMA operation is included in IEEE 754-2008.
The 1999 standard of the C programming language supports the FMA operation through the fma standard math library function.
Fused multiply-add capability is implemented in microprocessors such as the IBM POWER1 (1990) and above, the HAL/Fujitsu SPARC64 (1995) and above, the HP PA-8000 (1996) and above, the Intel Itanium (2001), and the Cell. It will be implemented in AMD processors with SSE5 instruction set support. Intel plans to implement FMA in processors using its Haswell microarchitecture, due sometime in 2012.
FMA capability is also present in the NVIDIA GeForce 200 Series (GTX 200) GPUs and the NVIDIA Tesla T10 GPGPUs.
Reference
|
| |
|
|