![]() | ||
A Wallace tree is an efficient hardware implementation of a digital circuit that multiplies two integers, devised by Australian Computer Scientist Chris Wallace in 1964.
Contents
The Wallace tree has three steps:
- Multiply (that is – AND) each bit of one of the arguments, by each bit of the other, yielding
n 2 a 2 b 3 - Reduce the number of partial products to two by layers of full and half adders.
- Group the wires in two numbers, and add them with a conventional adder.
The second phase works as follows. As long as there are three or more wires with the same weight add a following layer:
The benefit of the Wallace tree is that there are only
These computations only consider gate delays and don't deal with wire delays, which can also be very substantial.
The Wallace tree can be also represented by a tree of 3/2 or 4/2 adders.
It is sometimes combined with Booth encoding.
Weights explained
The weight of a wire is the radix (to base 2) of the digit that the wire carries. In general,
Example
- First we multiply every bit by every bit:
- weight 1 –
a 0 b 0 - weight 2 –
a 0 b 1 a 1 b 0 - weight 4 –
a 0 b 2 a 1 b 1 a 2 b 0 - weight 8 –
a 0 b 3 a 1 b 2 a 2 b 1 a 3 b 0 - weight 16 –
a 1 b 3 a 2 b 2 a 3 b 1 - weight 32 –
a 2 b 3 a 3 b 2 - weight 64 –
a 3 b 3 - Reduction layer 1:
- Pass the only weight-1 wire through, output: 1 weight-1 wire
- Add a half adder for weight 2, outputs: 1 weight-2 wire, 1 weight-4 wire
- 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
- Add a half adder for weight 32, outputs: 1 weight-32 wire, 1 weight-64 wire
- 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 – 1
- weight 4 – 2
- weight 8 – 3
- weight 16 – 2
- weight 32 – 2
- weight 64 – 2
- Reduction layer 2:
- Add a full adder for weight 8, and half adders for weights 4, 16, 32, 64
- Outputs:
- weight 1 – 1
- weight 2 – 1
- weight 4 – 1
- weight 8 – 2
- weight 16 – 2
- weight 32 – 2
- weight 64 – 2
- weight 128 – 1
- Group the wires into a pair of integers and an adder to add them.