High Performance Circuit Design - PowerPoint PPT Presentation

1 / 24
About This Presentation
Title:

High Performance Circuit Design

Description:

Apply it recursively. O(log n) depth circuit of size O(n2). 8-bit Wallace-tree multiplier a b a c b c co a b c s Full Adder A(0) B(0) A(1) B(1) A(2) B(2) A(n-1) B ... – PowerPoint PPT presentation

Number of Views:47
Avg rating:3.0/5.0
Slides: 25
Provided by: PANDUR
Category:

less

Transcript and Presenter's Notes

Title: High Performance Circuit Design


1
High Performance Circuit Design
  • By
  • Prof. V. Kamakoti
  • Department of Computer Science and Engineering
  • Indian Institute of Technology, Madras
  • Chennai 600 036, India

2
To learn
  • High speed Adder Circuits
  • Carry Ripple Inherently Sequential
  • Carry Look ahead Parallel version
  • You should understand the conversion portion
  • Multipliers
  • Wallace-tree multipliers

3
High Speed Circuit Design
  • Performance of a circuit
  • Circuit depth maximum level in the topological
    sort.
  • Circuit Size Number of combinational elements.
  • Optimize both for high performance.
  • Both are inversely proportional so a balance to
    be arrived.

4
Carry Ripple Adder
  • Given two n-bit numbers (a(n-1),
    a(n-2), a(n-3), , a(0)) and (b(n-1), b(n-2),
    b(n-3) ,, b(0)).
  • A full adder adds three bits (a,b,c), where a
    and b are data inputs and c is the carry-in
    bit. It outputs a sum bit s and a carry-out bit
    co

5
a
b
Full Adder
a
co
c
b
c
a
s
b
c
6
n-bit carry ripple adder
A(0)
B(0)
A(1)
B(1)
A(2)
B(2)
A(n-1)
B(n-1)
C(n-2)
C(0)
FA(2)
FA(0)
FA(1)
FA(n-1)
C(1)
C(2)
C(3)
C(n)
S(1)
S(n-1)
S(0)
S(2)
Circuit Depth is n. Circuit area is n times
size of a Full Adder
7
Carry look ahead adder
  • The depth is n because of the carry.
  • Some interesting facts about carry

a(j) b(j) c(j) c(j1)
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 1
If a(j) b(j) then c(j1) a(j)
b(j) If a(j) ltgt b(j) then c(j1) c(j)
8
Carry Lookahead Circuit
a(j) b(j) c(j1) Status (x(j1))
0 0 0 Kill (k)
0 1 c(j) Propagate (p)
1 0 c(j) Propagate (p)
1 1 1 Generate (g)
9
Carry Lookahead Circuit
x(j1)
() k p g
k k k g
p k p g
g k g g
New (j1)th carry status as influenced by
x(j) () is associative
x(j)
y(j) x(0) () x(1) () x(j) x(0) k If y(j)
k then c(j) 0 If y(j) g then c(j) 1 Note
that y(j) ltgt p
10
Carry Calculation
  • A prefix computation
  • y(0) x(0) k
  • y(1) x(0) () x(1)
  • y(2) x(0) () x(1) () x(2)
  • .
  • y(n) x(0) () x(1) () . x(n)
  • Let i,j x(i) () x(i1) () x(j)
  • i,j () j1,k i,k
  • By associative property

11
An 8-node Carry look ahead adder
12
Parallel Prefix circuit
Input x(0), x(1), x(n) for an n-bit CLA,
where x(0) k. Each x(i) is a 2-bit vector To
compute the prefix () and pipeline the
same. y(i) x(0) () x(1) () x(i) We use the
Recursive Doubling Technique described earlier
13
Pipelined Prefix Calculation based on Recursive
Doubling Technique
g
k
g
p
g
p
p
k
g
k
g
g
g
p
k
k
g
k
g
g
g
k
k
k
g
k
g
g
g
k
k
k
14
Pipelined Prefix Calculation based on Recursive
Doubling Technique
g
k
g
p
g
p
p
k
g
k
g
g
g
p
k
k
g
k
g
g
g
k
k
k
g
k
g
g
g
k
k
k
15
What is achieved?
  • The depth of circuit reduced from O(n) to
    O(log2n)
  • Size is still O(n)
  • This results in a fast adder.

16
Carry Save Addition
  • Given three n-bit numbers x, y and z.
  • The circuit computes a n-bit number u and a
    (n1)-bit number v such that
  • xyz u v.

17
Carry Save addition - example
18
Carry Save Adder Circuit
19
Multipliers
  • Simple grade-school multiplication method.
  • Concept of partial-products
  • Partial products generated in parallel and carry
    save addition results in faster array multiplier

20
Grade-school multiplication
  • 1 1 1 0 a
  • 1 1 0 1 b
  • ------------------------------
  • 1 1 1 0 m(0)
  • 0 0 0 0 m(1)
  • 1 1 1 0 m(2)
  • 1 1 1 0 m(3)
  • -------------------------------
  • 1 0 1 1 0 1 1 0 p

21
Carry Save Addition based Multiplication
22
Wallace-Tree Multipliers
  • While multiplying two n-bit numbers a total of n
    partial products have to be added.
  • Use floor(n/3) carry save adders and reduce the
    number to ceil(2n/3).
  • Apply it recursively.
  • O(log n) depth circuit of size O(n2).

23
8-bit Wallace-tree multiplier
24
Thank You
Write a Comment
User Comments (0)
About PowerShow.com