Application of Addition Algorithms
This comprehensive overview discusses various addition algorithms, essential as core operations in digital systems. It covers fixed-point algorithms, full adder design, ripple carry addition, and the associated challenges like carry propagation bottlenecks. The text explores fast algorithms for wireless communication applications, redundant and online arithmetic concepts, and their implications on area-time complexity in ASIC and FPGA designs. It also highlights how these algorithms are pivotal in multiuser detection and matrix calculations, enhancing efficiency in GPP and DSP processor designs.
Application of Addition Algorithms
E N D
Presentation Transcript
Application of Addition Algorithms Joe Cavallaro
Overview • Addition algorithms – core operation • Fixed-point core algorithms easy to implement • Basic adder design from full adder cell • Ripple carry addition – O(n) • Carry propagation bottleneck • “Fast” algorithms control carry transport
Wireless Communications Applications • Key to all matrix algorithms. • GPP and DSP processors use a given algorithm • Flexible choice in ASIC and FPGA designs • Multiuser Detection – Addition bottleneck since multiplications can be eliminated via hard decisions • Area-time complexity in choice of Adders
Redundant Arithmetic and On-Line Addition • Traditional number systems have “0” and “1” and work from LSB to MSB. • Redundant arithmetic allows “-1”, “0” and “1” bits per digit – implies multiple representations and “error correction” • On-Line arithmetic is bit serial from MSB to LSB • Allows for efficient pipelines and allows quick sign detection • Challenge is to quantify speedup
Adder Equations • Full Adder Cell • S_I = x_I XOR y_I XOR c_I • C_I+1 = x_I AND y_I OR c_I AND (x_I OR y_I)
Carry-Save Adders • Basic cell generate c and s output • S = (x + y + z) mod 2 • C = ((x + y + z) – s) / 2 • Final carry-propagate adder at bottom of tree
Summary • Overview of addition algorithms • Block structures for RCA, CLA, CSA • Introduction to Redundant arithmetic and On-line arithmetic • Application to ASICs for Multiuser Detection • Reference: Israel Koren