Abaara topic: Fused multiply-add

 

Abaara - Free Knowledge Database & Resources
 ABAARA
Abaara topic: Fused multiply-add
 Categories

 e-Learning Platform

 Web Packages

 Newsletter

eLeaP eLearning Management Systems LMS LCMS Systems. Online training made easy. Free trial now.
 
Fused multiply-add

In computing, a fused multiply-add computes a multiply-accumulate

FMA(A, B, C) = AB + C

with a single rounding of floating point numbers.

When implemented in a microprocessor this is typically faster than a multiply operation followed by an add. It also allows for getting the bottom half of the multiplication. E.g.,

  • H = FMA(A, B, 0.0)
  • L = FMA(A, B, −H)

This is implemented on the PowerPC and Itanium processor families. Because of this instruction there is no need for a hardware divide or square root unit since they can both be implemented using the FMA in software.

A fast FMA can speed up and improve the accuracy of many computations which involve the accumulation of products:

The FMA operation will likely be added to IEEE 754 in IEEE 754r.


< Back
 
Web info.abaara.com
 


Categories: Computing

 Web Results


 

This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License

 

 
Page topic: Fused multiply-add