35
Schaum’s Outline of Theory and Problems of Computer Architecture Copyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009 1 Chapter 03: Computer Arithmetic Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits

Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

  • Upload
    hadien

  • View
    220

  • Download
    2

Embed Size (px)

Citation preview

Page 1: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

1

Chapter 03: Computer ArithmeticComputer Arithmetic

Lesson 05:Arithmetic Multiplication Circuits

Page 2: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

2

Objective

• Learn Booth encoding• Learn fast multiplication by bit pairing

Page 3: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

3

Multiplication Process By Booth’s Encoding Algorithm

Page 4: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

4

Multiplication

• Multiplication of two's-complement numbers more complicated

• Because performing a straightforward unsigned multiplication of the two's-complement representations of the inputs does not give the correct result

Page 5: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

5

Multiplication

• Multipliers could be designed to convert both of their inputs to positive quantities and use the sign bits of the original inputs to determine the sign of the result

• Increases the time required to perform a multiplication

Page 6: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

6

Booth’s Algorithm

• A technique called Booth encoding• To quickly convert two's-complement numbers

into a format that is easily multiplied

Page 7: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

7

Booth encoding

• Apply encoding to the multiplier bits before the bits are used for getting partial products

1. If ith bit bi is 0 and (i –1)th bit bi-1 is 1, then take bi as +1

2. If ith bit bi is 1 and (i –1)th bit bi-1 is 0, then take bi as –1

Page 8: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

8

3. If ith bit bi is 0 and (i –1)th bit bi-1 is 0, then take bi as 0

4. If ith bit bi is 1 and (i –1)th bit bi-1 is 1, then take bi as 0

• When lsb b0 = 1, assume that it had b-1 as 0, thus take b0 = –1

Booth encoding

Page 9: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

9

Example

Multiplier After Booth’s conversion0 1 1 1 0 0 0 0 +1 0 0 –1 0 0 0 00 1 1 1 0 1 1 0 +1 0 0 –1 +1 0 –1 0 0 0 0 0 0 1 1 1 0 0 0 0 +1 0 0 –10 1 0 1 0 1 0 1 +1–1+1–1+1–1+1–1

Page 10: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

10

Multiplication by Booth’s Encoding

• Booth’s algorithm permits skipping over 1s and when there are blocks of 1s

• It improves performance significantly

Page 11: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

11

Multiplication using Booth’s algorithm

11101100b Two’s complement 0000000000010100×00000l01b Two’s complement ×1111111111111 0 11

00000000 0000 – 1+1 0 – 1× – 1 11111111 11101100

000000000 0000000 × + 1 00000000 00010100 × – 1 11111111 11101100

000000000 0000000= – 100 11111111 10011100

Page 12: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

12

Present CasePresent Case

• Observe─ the addition of 00000000 00010100 or its two’s complement is done only thrice, in contrast to the addition of 00000000 00010100 done 15 times in earlier described procedures without using Booth’s algorithm

• The adder circuit takes longer period to implement than finding –1 and +1 and 0’s for multiplier

Page 13: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

13

Worst Case

• The worst case of an implementation using Booth’s algorithm is when pairs of 01s or 10s occur very frequently in the multiplier

Page 14: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

14

Fast Multiplication Process

Page 15: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

15

Fast Multiplication

• Fast multiplication by a combination of methods

1. Bit Pair Recording of Multipliers and2. Carry Save Addition of the Sums

Page 16: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

16

Carry Save Addition in the Sums of partial products

Page 17: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

17

Two-dimensional arrays of full adders to get partial products

• The carry of each FA connects the neighboring left side cell in each row

• Each FA in a cell gives the carry out as input to the next row left column FA

• The carry addition method, which reduces the time taken for additions

Page 18: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

18

Carry Save method for faster multiplication

Page 19: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

19

Two-dimensional arrays of full adders to get partial products

• Downward diagonal full arrows as an example• An FA, instead of getting the ripple carry input

from the previous input column of a row is given carry-input from previous column’s previous row output

• Refer upward dashed arrows as an example

Page 20: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

20

Two-dimensional arrays of full adders to get partial products

• For example, carry out from first row’s right-most column full adder FA is given as input to the second row’s right-most FA, carry out from the second row’s right- most FA is given as input to the third row’s right-most FA, and so on

• Each FA in a cell gives the carry out as input to next row’s left column FA

• Delay through carry save adder is less than carry ripple through adder

Page 21: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

21

Bit Pair Recording of Multipliers

Page 22: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

22

Bit Pair Recording of Multipliers

• When Booth’s algorithm is applied to the multiplier bits before the bits are used for getting partial products─ Get fast multiplication by pairing

1. If pair ith bit and (i –1)th Booth multiplier bit (Bi , Bi–1) is (+1, −1), then take Bi–1 = +1 and Bi = 0 and pair (0, +1)

Page 23: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

23

Bit Pair Recording of Multipliers

2. If pair ith bit and (i –1)th Booth multiplier bit (Bi, Bi–1) is (−1, +1), then take Bi–1 = −1 and Bi = 0 and make pair (0, −1)

3. If pair ith bit and (i –1)th Booth multiplier bit (Bi, Bi–1) is (+1, 0), then take Bi–1 = 2 and Bi = 0 and make pair (0, +2)

4. If pair ith bit and (i –1)th Booth multiplier bit (Bi, Bi–1) is (−1, 0), then take Bi–1 = −2 and Bi = 0 and make pair (0, −2)

Page 24: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

24

Example

Multiplier0 1 1 1 0 0 0 0After Booth’s conversion+10 0 –1 0 0 0 0After pairing0+2 0 –1 0 0 0 0

Page 25: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

25

Example

Multiplier0 1 1 1 0 1 1 0

After Booth’s conversion+1 0 0 –1 +1 0 –1 0 After pairing0 + 2 0 0 –1 0 –1 0

Page 26: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

26

Example

Multiplier0 0 0 0 0 1 1 1 After Booth’s conversion0 0 0 0 +1 0 0 –1 After pairing0 0 0 0 0 +2 0 –1

Page 27: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

27

Example

Multiplier0 1 0 1 0 1 0 1

After Booth’s conversion+1–1+1–1+1–1+1–1 After pairing0 +1 0 +1 0 +1 0 +1

Page 28: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

28

Worst case─ 0 1 0 1 0 1 0 1

• In the worst case also, the number of additions in an 8-bit multiplier has reduced to 4

Page 29: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

29

Use of triplets

• bi+1 1• bi 1 Bi = 0• bi–1 1• bi+1 1• bi 1 Bi = – 1• bi–1 0

Page 30: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

30

Use of triplets

• bi+1 1• bi 0 Bi = –2• bi–1 0• bi+1 1• bi 0 Bi = – 1• bi–1 1

Page 31: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

31

Use of triplets

• bi+1 0• bi 0 Bi = 0• bi–1 0• bi+1 0• bi 0 Bi = + 1• bi–1 1

Page 32: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

32

Use of triplets

• bi+1 0• bi 1 Bi = +1• bi–1 0• bi+1 0• bi 1 Bi = + 2• bi–1 1

Page 33: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

33

Summary

Page 34: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

34

• Multiplication circuit becomes fast by Booth’s algorithm

• Faster by Bit pair encoding• Faster by triplets

We learnt

Page 35: Chapter 03 · Chapter 03: Computer Arithmetic Lesson 05: Arithmetic Multiplication Circuits. ... Bit Pair Recording of Multipliers • When Booth’s algorithm is applied to the

Schaum’s Outline of Theory and Problems of Computer ArchitectureCopyright © The McGraw-Hill Companies Inc. Indian Special Edition 2009

35

End of Lesson 5 on Arithmetic Multiplication Circuits