We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d28625 commit 33e151aCopy full SHA for 33e151a
flow/scripts/load.tcl
@@ -3,6 +3,12 @@ source $::env(SCRIPTS_DIR)/util.tcl
3
source $::env(SCRIPTS_DIR)/report_metrics.tcl
4
5
proc load_design { design_file sdc_file } {
6
+ # Do not reload if design is already loaded
7
+ set db [ord::get_db]
8
+ if { [$db getChip] != "NULL" && [[$db getChip] getBlock] != "NULL" } {
9
+ return
10
+ }
11
+
12
source_env_var_if_exists PLATFORM_TCL
13
14
source $::env(SCRIPTS_DIR)/read_liberty.tcl
0 commit comments