Multiply–accumulate operation


In computing, especially digital signal processing, the multiply–accumulate or multiply–add operation is a common step that computes the product of two numbers and adds that product to an accumulator. The hardware unit that performs the operation is known as a multiplier–accumulator ; the operation itself is also often called a MAC or a MAD operation. The MAC operation modifies an accumulator a:
When done with floating-point numbers, it might be performed with two roundings, or with a single rounding. When performed with a single rounding, it is called a fused multiply–add or fused multiply–accumulate.
Modern computers may contain a dedicated MAC, consisting of a multiplier implemented in combinational logic followed by an adder and an accumulator register that stores the result. The output of the register is fed back to one input of the adder, so that on each clock cycle, 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. Percy Ludgate was the first to conceive a MAC in his Analytical Machine of 1909, and the first to exploit a MAC for division. The first modern processors to be equipped with MAC units were digital signal processors, but the technique is now also common in general-purpose processors.

In floating-point arithmetic

When done with integers, the operation is typically exact. However, floating-point numbers have only a certain amount of mathematical precision. That is, digital floating-point arithmetic is generally not associative or distributive.
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. IEEE 754-2008 specifies that it must be performed with one rounding, yielding a more accurate result.

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 expression to its full precision before rounding the final result down to N significant bits.
A fast FMA can speed up and improve the accuracy of many computations that involve the accumulation of products:
Fused multiply–add can usually be relied on to give more accurate results. However, William Kahan has pointed out that it can give problems if used unthinkingly. If is evaluated as using fused multiply–add, then the result may be negative even when due to the first multiplication discarding low significance bits. This could then lead to an error if, for instance, the square root of the result is then evaluated.
When implemented inside a microprocessor, an FMA can be faster than a multiply operation followed by an add. However, standard industrial implementations based on the original IBM RS/6000 design require a 2N-bit adder to compute the sum properly.
Another benefit of including this instruction is that it allows an efficient software implementation of division and square root operations, thus eliminating the need for dedicated hardware for those operations.

Dot product instruction

Some machines combine multiple fused multiply add operations into a single step, e.g. performing a four-element dot-product on two 128-bit SIMD registers a0×b0 + a1×b1 + a2×b2 + a3×b3 with single cycle throughput.

Support

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 and the automatic transformation of a multiplication followed by an addition, which can be explicitly enabled or disabled with standard pragmas. The GCC and Clang C compilers do such transformations by default for processor architectures that support FMA instructions. With GCC, which does not support the aforementioned pragma, this can be globally controlled by the -ffp-contract command line option.
The fused multiply–add operation was introduced as "multiply–add fused" in the IBM POWER1 processor, but has been added to numerous processors:
GPUs and GPGPU boards:

Truncating MAD

A simpler implementation of MADD involves truncating the result of the multiplication before adding. This provides no accuracy benefit, but was, before 2010, more commonly supported on GPUs than the precise FMA. An example is seen in the "FMAD" instruction of Nvidia PTX.
The OpenCL optimization option -cl-mad-enable enables replacing a * b + c with mad, the function computing the equivalent expression "with reduced accuracy" in OpenCL 1.0. The accuracy of this option as well as mad has become more nuanced in newer versions of OpenCL, only allowing reduced accuracy in the "embedded profile" as of version 3.0.

Rounding with extra intermediate precision

The Digital Equipment Corporation VAX's POLY instruction is used for evaluating polynomials with Horner's rule using a succession of multiply and add steps. Instruction descriptions do not specify whether the multiply and add are performed using a single FMA step. This instruction has been a part of the VAX instruction set since its original 11/780 implementation in 1977. According to Bob Supnik, the machine internally performs the multiplication and addition in extended precision, then converts to the target format. There is therefore a rounding step after multiplication. As a result, although this operation is more precise than a naive a * b + c in target format, it does not meet the IEEE definition of FMA.
This behavior is also comparable to using FLT_EVAL_METHOD 2 on x87.