Skip to content

Commit 97a463d

Browse files
authored
Merge pull request #2475 from The-OpenROAD-Project-staging/no-drc-load
drc markers are now saved in the db and no longer need to be loaded
2 parents c64e96e + a51bcba commit 97a463d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

flow/scripts/save_images.tcl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ set height [[[ord::get_db_block] getBBox] getDY]
66
set height [ord::dbu_to_microns $height]
77
set resolution [expr $height / 1000]
88

9-
# Show the drc markers (if any)
10-
if {[file exists $::env(REPORTS_DIR)/5_route_drc.rpt] == 1} {
11-
gui::load_drc $::env(REPORTS_DIR)/5_route_drc.rpt
9+
set markerdb [[ord::get_db_block] findMarkerCategory DRC]
10+
if {$markerdb != "NULL" && [$markerdb getMarkerCount] > 0} {
11+
gui::select_marker_category $markerdb
1212
}
13-
13+
1414
gui::clear_selections
1515

1616
# Setup initial visibility to avoid any previous settings

tools/OpenROAD

Submodule OpenROAD updated 265 files

0 commit comments

Comments
 (0)