Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Dadda multiplier

From Wikipedia, the free encyclopedia
Hardware multiplier design

TheDadda multiplier is a hardwarebinary multiplier design invented by computer scientistLuigi Dadda in 1965.[1] It uses a selection offull and half adders to sum the partial products in stages (theDadda tree orDadda reduction) until two numbers are left. The design is similar to theWallace multiplier, but the different reduction tree reduces the required number ofgates (for all but the smallest operand sizes) and makes it slightly faster (for all operand sizes).[2]

Both Dadda and Wallace multipliers have the same three steps for two bit stringsw1{\displaystyle w_{1}} andw2{\displaystyle w_{2}} of lengths1{\displaystyle \ell _{1}} and2{\displaystyle \ell _{2}} respectively:

  1. Multiply (logical AND) each bit ofw1{\displaystyle w_{1}}, by each bit ofw2{\displaystyle w_{2}}, yielding12{\displaystyle \ell _{1}\cdot \ell _{2}} results, grouped by weight in columns
  2. Reduce the number of partial products by stages offull and half adders until we are left with at most two bits of each weight.
  3. Add the final result with a conventional adder.

As with the Wallace multiplier, the multiplication products of the first step carry different weights reflecting the magnitude of the original bit values in the multiplication. For example, the product of bitsanbm{\displaystyle a_{n}b_{m}} has weightn+m{\displaystyle n+m}.

Unlike Wallace multipliers that reduce as much as possible on each layer, Dadda multipliers attempt to minimize the number of gates used, as well as input/output delay. Because of this, Dadda multipliers have a less expensive reduction phase, but the final numbers may be a few bits longer, thus requiring slightly bigger adders.

Description

[edit]
An example of a full-adder circuit.

To achieve a more optimal final product, the structure of the reduction process is governed by slightly more complex rules than in Wallace multipliers.

The progression of the reduction is controlled by a maximum-height sequencedj{\displaystyle d_{j}}, defined by:

d1=2{\displaystyle d_{1}=2}, anddj+1=floor(1.5dj).{\displaystyle d_{j+1}=\operatorname {floor} (1.5d_{j}).}

This yields a sequence like so:

d1=2,d2=3,d3=4,d4=6,d5=9,d6=13,{\displaystyle d_{1}=2,d_{2}=3,d_{3}=4,d_{4}=6,d_{5}=9,d_{6}=13,\ldots }

The initial value ofj{\displaystyle j} is chosen as the largest value such thatdj<min(n1,n2){\displaystyle d_{j}<\min {(n_{1},n_{2})}}, wheren1{\displaystyle n_{1}} andn2{\displaystyle n_{2}} are the number of bits in the input multiplicand and multiplier. The lesser of the two bit lengths will be the maximum height of each column of weights after the first stage of multiplication. For each stagej{\displaystyle j} of the reduction, the goal of the algorithm is the reduce the height of each column so that it is less than or equal to the value ofdj{\displaystyle d_{j}}.

For each stage from,,1{\displaystyle ,\ldots ,1}, reduce each column starting at the lowest-weight column,c0{\displaystyle c_{0}} according to these rules:

  1. Ifheight(ci)dj{\displaystyle \operatorname {height} (c_{i})\leqslant d_{j}} the column does not require reduction, move to columnci+1{\displaystyle c_{i+1}}
  2. Ifheight(ci)=dj+1{\displaystyle \operatorname {height} (c_{i})=d_{j}+1} add the top two elements in a half-adder, placing the result at the bottom of the column and the carry at the bottom of columnci+1{\displaystyle c_{i+1}}, then move to columnci+1{\displaystyle c_{i+1}}
  3. Else, add the top three elements in a full-adder, placing the result at the bottom of the column and the carry at the bottom of columnci+1{\displaystyle c_{i+1}}, restartci{\displaystyle c_{i}}at step 1

Algorithm example

[edit]
4 layer Dadda reduction of an 8x8 partial product matrix, using 7half adders (two dots) and 35full adders (three dots). The dots in each column are bits of equal weight. Bits with lower weight are rightmost.

The example in the adjacent image illustrates the reduction of an 8 × 8 multiplier, explained here.

The initial statej=4{\displaystyle j=4} is chosen asd4=6{\displaystyle d_{4}=6}, the largest value less than 8.

Stagej=4{\displaystyle j=4},d4=6{\displaystyle d_{4}=6}

Stagej=3{\displaystyle j=3},d3=4{\displaystyle d_{3}=4}

Stagej=2{\displaystyle j=2},d2=3{\displaystyle d_{2}=3}

Stagej=1{\displaystyle j=1},d1=2{\displaystyle d_{1}=2}

Addition

The output of the last stage leaves 15 columns of height two or less which can be passed into a standard adder.

See also

[edit]

References

[edit]
  1. ^Dadda, Luigi (May 1965). "Some schemes for parallel multipliers".Alta Frequenza.34 (5):349–356.
    Dadda, L. (1976). "Some schemes for parallel multipliers". In Swartzlander, Earl E. (ed.).Computer Design Development: Principal Papers. Hayden Book Company. pp. 167–180.ISBN 978-0-8104-5988-5.OCLC 643640444.
  2. ^Townsend, Whitney J.; Swartzlander, Jr., Earl E.;Abraham, Jacob A. (December 2003)."A Comparison of Dadda and Wallace Multiplier Delays"(PDF).SPIE Advanced Signal Processing Algorithms, Architectures, and Implementations XIII.The International Society.doi:10.1117/12.507012.

Further reading

[edit]
Retrieved from "https://en.wikipedia.org/w/index.php?title=Dadda_multiplier&oldid=1278579227"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp