16
Practical Problems in VLSI Physical Design Bounded Radius Routing (1 /16) Bounded Radius Routing Perform bounded PRIM algorithm Under ε = 0, ε = 0.5, and ε = ∞ Compare radius and wirelength Radius = 12 for this net

Bounded Radius Routing

  • Upload
    denver

  • View
    64

  • Download
    0

Embed Size (px)

DESCRIPTION

Bounded Radius Routing. Perform bounded PRIM algorithm Under ε = 0, ε = 0.5, and ε = ∞ Compare radius and wirelength Radius = 12 for this net. BPRIM Under ε = 0. Example Edges connecting to nearest neighbors = ( c,d ) and ( c,e ) We choose ( c,d ) based on lexicographical order - PowerPoint PPT Presentation

Citation preview

Page 1: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (1/16)

Bounded Radius Routing Perform bounded PRIM algorithm

Under ε = 0, ε = 0.5, and ε = ∞ Compare radius and wirelength Radius = 12 for this net

Page 2: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (2/16)

BPRIM Under ε = 0 Example

Edges connecting to nearest neighbors = (c,d) and (c,e) We choose (c,d) based on lexicographical order

s-to-d path length along T = 12+5 > 12 (= radius bound) First appropriate edge found = (s,d)

Page 3: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (3/16)

BPRIM Under ε = 0 (cont) Radius bound = 12

edges connecting to nearest neighbors

s-to-y path lengthalong T

ties broken lexicographically

should be ≤ 12;otherwise

appropriate used

first feasibleappr-edge

Page 4: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (4/16)

BPRIM Under ε = 0 (cont)

Page 5: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (5/16)

BPRIM Under ε = 0 (cont)

Page 6: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (6/16)

BPRIM Under ε = 0.5 Radius bound = 18

edges connecting to nearest neighbors

s-to-y path lengthalong T

ties broken lexicographically

should be ≤ 18;otherwise

appropriate used

first feasibleappr-edge

should be ≤ 12

Page 7: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (7/16)

BPRIM Under ε = 0.5 (cont)

Page 8: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (8/16)

BPRIM Under ε = 0.5 (cont)

Page 9: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (9/16)

BPRIM Under ε = ∞

Radius bound = ∞ = regular PRIM

Page 10: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (10/16)

BPRIM Under ε = ∞ (cont)

Page 11: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (11/16)

Comparison As the bound increases (12 → 18 → ∞)

Radius value increases (12 →17 → 22) Wirelength decreases (56 → 49 → 36)

Page 12: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (12/16)

Bounded Radius Bounded Cost Perform BRBC under ε = 0.5

ε defines both radius and wirelength bound Perform DFS on rooted-MST Node ordering L = {s, a, b, c, e, f, e, g, e, c, d, h, d, c, b, a, s} We start with Q = MST

Page 13: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (13/16)

MST Augmentation Example: visit a via (s,a)

Running total of the length of visited edges, S = 5 Rectilinear distance between source and a, dist(s,a) = 5 We see that ε · dist(s,a) = 0.5 · 5 < S Thus, we reset S and add (s,a) to Q (note (s,a) is already in Q)

Page 14: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (14/16)

MST Augmentation (cont)

dotted edges are added

visit nodes based on L

Page 15: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (15/16)

Last Step: SPT Computation Compute rooted shortest path tree on augmented Q

Page 16: Bounded Radius Routing

Practical Problems in VLSI Physical Design Bounded Radius Routing (16/16)

BPRIM vs BRBC Under the same ε = 0.5

BPRIM: radius = 18, wirelength = 49 BRBC: radius = 12, wirelength = 52 BRBC: significantly shorter radius at slight wirelength increase