forked from The-OpenROAD-Project/OpenROAD
-
Notifications
You must be signed in to change notification settings - Fork 0
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 The-OpenROAD-Project#5789 from gadfort/pad-rdl-err…
…or-checking-ports pad: add error checking to rdl_route to avoid segfault and allow for ports to be specified
- Loading branch information
Showing
7 changed files
with
5,086 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells | ||
[INFO ODB-0227] LEF file: Nangate45_io/dummy_pads.lef, created 25 library cells | ||
[INFO ODB-0128] Design: soc_bsg_black_parrot | ||
[INFO ODB-0130] Created 139 pins. | ||
[INFO ODB-0131] Created 1452 components and 8011 component-terminals. | ||
[INFO ODB-0132] Created 4 special nets and 4706 connections. | ||
[INFO ODB-0133] Created 354 nets and 627 connections. | ||
[ERROR PAD-0042] No nets found to route | ||
PAD-0042 |
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,9 @@ | ||
# Test for RDL router with invalid net list | ||
source "helpers.tcl" | ||
read_lef Nangate45/Nangate45.lef | ||
read_lef Nangate45_io/dummy_pads.lef | ||
|
||
read_def Nangate45_blackparrot/floorplan_flipchip.def | ||
|
||
catch {rdl_route -layer metal10 -width 4 -spacing 4 ""} err | ||
puts $err |
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells | ||
[INFO ODB-0227] LEF file: Nangate45_io/dummy_pads.lef, created 25 library cells | ||
[INFO ODB-0128] Design: soc_bsg_black_parrot | ||
[INFO ODB-0130] Created 139 pins. | ||
[INFO ODB-0131] Created 1452 components and 8011 component-terminals. | ||
[INFO ODB-0132] Created 4 special nets and 4706 connections. | ||
[INFO ODB-0133] Created 354 nets and 627 connections. | ||
[INFO PAD-0005] Routing 139 nets | ||
No differences found. |
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,12 @@ | ||
# Test for RDL router without 45* using ports instead of nets | ||
source "helpers.tcl" | ||
read_lef Nangate45/Nangate45.lef | ||
read_lef Nangate45_io/dummy_pads.lef | ||
|
||
read_def Nangate45_blackparrot/floorplan_flipchip.def | ||
|
||
rdl_route -layer metal10 -width 4 -spacing 4 [get_ports "VDD DVDD VSS DVSS p_*"] | ||
|
||
set def_file [make_result_file "rdl_route_ports.def"] | ||
write_def $def_file | ||
diff_files $def_file "rdl_route_ports.defok" |
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