-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6280 from gadfort/dpl-verbose-filler
dpl: add verbose flag to filler_placement to print filler cell usage
- Loading branch information
Showing
14 changed files
with
121 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells | ||
[INFO ODB-0128] Design: single_cell | ||
[INFO ODB-0130] Created 2 pins. | ||
[INFO ODB-0131] Created 1 components and 4 component-terminals. | ||
[INFO ODB-0132] Created 2 special nets and 2 connections. | ||
[INFO ODB-0133] Created 2 nets and 2 connections. | ||
Placement Analysis | ||
--------------------------------- | ||
total displacement 3.7 u | ||
average displacement 3.7 u | ||
max displacement 3.7 u | ||
original HPWL 2.3 u | ||
legalized HPWL 9.9 u | ||
delta HPWL 332 % | ||
|
||
[INFO DPL-0001] Placed 8 filler instances. | ||
Filler usage: | ||
FILLCELL_X1: 1 | ||
FILLCELL_X16: 1 | ||
FILLCELL_X2: 2 | ||
FILLCELL_X32: 3 | ||
FILLCELL_X4: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# filler_placement with set_placement_padding | ||
from openroad import Design, Tech | ||
import helpers | ||
import dpl_aux | ||
|
||
tech = Tech() | ||
tech.readLef("Nangate45/Nangate45.lef") | ||
design = helpers.make_design(tech) | ||
design.readDef("simple01.def") | ||
dpl_aux.set_placement_padding(design, globl=True, left=2, right=2) | ||
|
||
dpl_aux.detailed_placement(design) | ||
dpl_aux.filler_placement(design, masters=["FILL.*"], verbose=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# filler_placement with set_placement_padding with verbose | ||
source "helpers.tcl" | ||
read_lef Nangate45/Nangate45.lef | ||
read_def simple01.def | ||
set_placement_padding -global -left 2 -right 2 | ||
|
||
detailed_placement | ||
filler_placement FILL* -verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[INFO ODB-0227] LEF file: fillers9.lef, created 5 layers, 14 library cells | ||
[INFO ODB-0128] Design: fillers9 | ||
[INFO ODB-0131] Created 8 components and 32 component-terminals. | ||
[INFO DPL-0001] Placed 22 filler instances. | ||
Filler usage: | ||
FILLCELL_RVT_X1: 1 | ||
FILLCELL_RVT_X16: 2 | ||
FILLCELL_RVT_X2: 3 | ||
FILLCELL_RVT_X32: 1 | ||
FILLCELL_RVT_X4: 2 | ||
FILLCELL_RVT_X8: 2 | ||
FILLCELL_LVT_X1: 1 | ||
FILLCELL_LVT_X16: 3 | ||
FILLCELL_LVT_X2: 2 | ||
FILLCELL_LVT_X4: 3 | ||
FILLCELL_LVT_X8: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# filler_placement with verbose | ||
from openroad import Tech | ||
import helpers | ||
import dpl_aux | ||
|
||
tech = Tech() | ||
tech.readLef("fillers9.lef") | ||
design = helpers.make_design(tech) | ||
design.readDef("fillers9.def") | ||
|
||
dpl_aux.filler_placement(design, masters=["FILL.*"], verbose=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# filler_placement with verbose | ||
source "helpers.tcl" | ||
read_lef fillers9.lef | ||
read_def fillers9.def | ||
|
||
filler_placement FILL* -verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters