Polynomial expansion: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>ChrisGualtieri
m Remove stub template(s). Page is start class or higher. Also check for and do General Fixes + Checkwiki fixes using AWB
No edit summary
 
Line 1: Line 1:
[[File:Hindu lattice 2.svg|thumb |basic principle known from manual multiplication]]
Hi there. Let me begin by introducing the writer, her title is Sophia. What me and my family  [http://ustanford.com/index.php?do=/profile-38218/info/ psychic phone readings] adore is to climb but I'm [http://clothingcarearchworth.com/index.php?document_srl=441551&mid=customer_review cheap psychic readings] considering on beginning something new. Office supervising is where her main income comes from. Some time in the past he selected to reside in North Carolina and he doesn't plan on altering it.<br><br>Look at my blog post ... psychic readers [[http://hknews.classicmall.Com.hk/groups/some-simple-tips-for-personal-development-progress/ http://hknews.classicmall.Com.hk/]]
<!-- [[File:And.svg|thumb | AND gate]]
[[File:Binary tree.svg|thumb | Would be used in reverse order]] -->
[[File:dadda tree 8x8.svg|thumb | Example of Dadda reduction on 8x8 multiplier]]
[[File:Full-adder.svg|thumb | Full adder, would in this case use only exclusive OR (XOR)]]
The '''Dadda multiplier''' is a hardware multiplier design invented by computer scientist [[Luigi Dadda]] in 1965.  It is similar to the [[Wallace multiplier]], but it is slightly faster (for all operand sizes) and requires fewer gates (for all but the smallest operand sizes).[http://www.cerc.utexas.edu/~whitney/pdfs/spie03.pdf]
 
In fact, Dadda and Wallace multipliers have the same three steps:
 
# Multiply ([[Logical conjunction|logical AND]]) each bit of one of the arguments, by each bit of the other, yielding <math>n^2</math> results. Depending on position of the multiplied bits, the wires carry different weights, for example wire of bit carrying result of <math>a_2 b_3</math> is 32.
# Reduce the number of partial products to two layers of full and half adders.
# Group the wires in two numbers, and add them with a conventional [[adder (electronics)|adder]].
 
However, unlike Wallace multipliers that reduce as much as possible on each layer, Dadda multipliers do as few reductions as possible. Because of this, Dadda multipliers have a less expensive reduction phase, but the numbers may be a few bits longer, thus requiring slightly bigger adders.
 
To achieve this, the structure of the second step is governed by slightly more complex rules than in the Wallace tree.  As in the Wallace tree, a new layer is added if any weight is carried by three or more wires. The reduction rules for the Dadda tree, however, are as follows:
 
* Take any three wires with the same weights and input them into a [[full adder]]. The result will be an output wire of the same weight and an output wire with a higher weight for each three input wires.
* If there are two wires of the same weight left, and the current number of output wires with that weight is equal to 2 (modulo 3), input them into a [[half adder]].  Otherwise, pass them through to the next layer.
* If there is just one wire left, connect it to the next layer.
 
This step does only as many adds as necessary, so that the number of output weights stays close to a multiple of 3, which is the ideal number of weights when using full adders as [[Adder (electronics)#3:2 compressors|3:2 compressors]].
 
However, when a layer carries at most three input wires for any weight, that layer will be the last one.  In this case, the Dadda tree will use half adder more aggressively (but still not as much as in a Wallace multiplier), to ensure that there are only two outputs for any weight.  Then, the second rule above changes as follows:
 
* If there are two wires of the same weight left, and the current number of output wires with that weight is equal to 1 or 2 (modulo 3), input them into a half adder.  Otherwise, pass them through to the next layer.
 
== Algorithm example ==
This section explains the Dadda dot-diagram reduction example
* Let d<sub>1</sub> = 2 and d<sub>j+1</sub> = floor(3*d<sub>j</sub>/2)
** This generates the sequence: d<sub>1</sub>=2, d<sub>2</sub>=3, d<sub>3</sub>=4, d<sub>4</sub>=6, d<sub>5</sub>=9, d<sub>6</sub>=13, ...
* Find the largest d<sub>j</sub> that is less than the maximum number of bits in any column.
** For our example to the right, this would be 6
* For every column, use [[full adder]]s (FA) and [[half adder]]s (HA) to ensure that the number of elements in each column will be ≤ d<sub>j</sub>
** When doing this, keep in mind that any column n that has an adder within it, will pass its sum bit to the next stage in column n and the carry bit to the n+1 column.  The n+1 column will need to take this into account when determining the number of adders to use.
 
; First bank
: Columns 0-5 don't need any adders, since they all have ≤ 6 bits
: Column 6 needs 1 HA (7 > 6) which reduces it to 6 bits and passes one carry bit to column 7.
: Column 7 can use a FA since it has 8 bits which would reduce the column to 6 bits, but since column 6 is passing in a carry bit, it needs one more HA to bring the total to 6 bits
: Column 8 needs a FA and a HA since it's getting 2 carry bits from column 7's adders.
: Column 9 only needs one FA
: Columns 10-14 do not need any adders since any carry bits from the previous columns don't result in a total greater than 6.
; Second bank
: The next bank's d<sub>j</sub> = 4
: Columns 0-3 don't need any adders since they have ≤ 4 bits
: Column 4 needs a HA, (5 > 4)
: Column 5 needs a FA and a HA due to the carry bit
: Columns 6-10 need two FA since they all have 2 carry bits coming from the previous stage
: Column 11 only needs 1 FA to get to 4 bits after the carry bits come in
: Columns 12-14 don't need any adders since they all have < 4 bits
; 3rd bank
: The next bank's d<sub>j</sub> = 3
: Columns 0-2 don't need any adders since they have ≤ 3 bits
: Column 3 only needs one HA to get to 3 bits
: Column 4-12 need a FA since they all have one carry-in bit coming in from the previous column
: Columns 13-14 don't need any adders since they have < 3 bits
; 4th bank
: The next bank's d<sub>j</sub> = 2
: Columns 0-1 don't need any adders since they have ≤ 2 bits
: Column 2 only needs one HA to get to 2 bits
: Column 3-13 need a FA since they all have one carry-in bit coming in from the previous column
: Column 14 doesn't need an adder (1 < 2)
; 5th bank
: At this point, everything is reduced to two bits and the resultant can be calculated from a 14 bit adder.
 
== Example ==
<math>n=4</math>, multiplying <math>a_3a_2a_1a_0</math> by <math>b_3b_2b_1b_0</math>:
 
# Reduction layer 1:
#* Pass the only weight-1 wire through, output: 1 weight-1 wire
#* Pass the two weight-2 wires through, outputs: 2 weight-2 wires
#* Add a full adder for weight 4, outputs: 1 weight-4 wire, 1 weight-8 wire
#* Add a full adder for weight 8, and pass the remaining wire through, outputs: 2 weight-8 wires, 1 weight-16 wire
#* Add a full adder for weight 16, outputs: 1 weight-16 wire, 1 weight-32 wire
#* Pass the two weight-32 wires through, outputs: 2 weight-32 wires
#* Pass the only weight-64 wire through, output: 1 weight-64 wire
# Wires at the output of reduction layer 1:
#* weight 1 - 1
#* weight 2 - 2
#* weight 4 - 1
#* weight 8 - 3
#* weight 16 - 2
#* weight 32 - 3
#* weight 64 - 1
# Reduction layer 2: this layer will be the last, because any weight has at most three input wires.
#* Weights 1, 2, 4, 64 pass through.
#* Add a full adder for weight 8, outputs: 1 weight-8 wire, 1 weight-16 wire
#* Add a half adder for weight 16, outputs: 1 weight-16 wire, 1 weight-32 wire<br>Weight 8's full adder has already produced one weight-16 output wire. By using a half adder for the two weight-16 input wires, the Dadda tree ensures that the last layer has only two output wires for any weight.
#* Add a full adder for weight 32, outputs: 1 weight-32 wire, 1 weight-64 wire
# Outputs:
#* weight 1 - 1
#* weight 2 - 2
#* weight 4 - 1
#* weight 8 - 1
#* weight 16 - 2
#* weight 32 - 2
#* weight 64 - 2
 
Compared to a Wallace tree, which requires ten full adders and half adders, the reduction phase of the Dadda multiplier has the same delay, but requires only six.  On the other hand, the final adder has 6-bit inputs (weights 2 to 64), rather than 5-bit (weights 8 to 128) as in a Wallace tree.
 
==See also==
* [[Booth's multiplication algorithm]]
* [[Fused multiply–add]]
* [[Wallace tree]]
* [[BKM algorithm]] for complex logarithms and exponentials
* [[Kochanski multiplication]] for [[modular arithmetic|modular]] multiplication
 
==References==
* {{cite journal
  | last = Dadda
  | first = L.
  | authorlink = Luigi Dadda
  | title = Some schemes for parallel multipliers
  | journal = Alta Frequenza
  | volume = 34
  | pages = 349–356
  | year = 1965 }}
* {{cite conference
  | last = Townsend
  | first = W.
  | coauthors = Swartzlander, E.; Abraham , J.
  | title =  A Comparison of Dadda and Wallace Multiplier Delays
  | booktitle =  SPIE Advanced Signal Processing Algorithms, Architectures, and Implementations XIII
  | date = 2003-08-06
  | url = http://www.cerc.utexas.edu/~whitney/pdfs/spie03.pdf }}
 
[[Category:Digital circuits]]
[[Category:Computer arithmetic]]

Latest revision as of 14:05, 28 June 2014

Hi there. Let me begin by introducing the writer, her title is Sophia. What me and my family psychic phone readings adore is to climb but I'm cheap psychic readings considering on beginning something new. Office supervising is where her main income comes from. Some time in the past he selected to reside in North Carolina and he doesn't plan on altering it.

Look at my blog post ... psychic readers [http://hknews.classicmall.Com.hk/]