Skip to content

Commit 0830394

Browse files
committed
fix tcl format
Signed-off-by: Jonas Gava <[email protected]>
1 parent 27b080c commit 0830394

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

flow/scripts/global_route.tcl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ proc global_route_helper { } {
1313
-congestion_report_file $::global_route_congestion_report] \
1414
$::env(GLOBAL_ROUTE_ARGS)]
1515

16-
if {[env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE]} {
16+
if { [env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE] } {
1717
log_cmd global_route {*}$all_args -resistance_aware
1818
} else {
1919
log_cmd global_route {*}$all_args
@@ -65,7 +65,7 @@ proc global_route_helper { } {
6565
log_cmd global_route -start_incremental
6666
log_cmd detailed_placement
6767
# Route only the modified net by DPL
68-
if {[env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE]} {
68+
if { [env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE] } {
6969
log_cmd global_route -end_incremental -resistance_aware \
7070
-congestion_report_file $::env(REPORTS_DIR)/congestion_post_repair_design.rpt
7171
} else {
@@ -88,7 +88,7 @@ proc global_route_helper { } {
8888
log_cmd global_route -start_incremental
8989
log_cmd detailed_placement
9090
# Route only the modified net by DPL
91-
if {[env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE]} {
91+
if { [env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE] } {
9292
log_cmd global_route -end_incremental -resistance_aware \
9393
-congestion_report_file $::env(REPORTS_DIR)/congestion_post_repair_timing.rpt
9494
} else {
@@ -101,11 +101,11 @@ proc global_route_helper { } {
101101
log_cmd global_route -start_incremental
102102
recover_power_helper
103103
# Route the modified nets by rsz journal restore
104-
if {[env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE]} {
104+
if { [env_var_exists_and_non_empty ENABLE_RESISTANCE_AWARE] } {
105105
log_cmd global_route -end_incremental -resistance_aware \
106106
-congestion_report_file $::env(REPORTS_DIR)/congestion_post_recover_power.rpt
107107
} else {
108-
log_cmd global_route -end_incremental \
108+
log_cmd global_route -end_incremental \
109109
-congestion_report_file $::env(REPORTS_DIR)/congestion_post_recover_power.rpt
110110
}
111111

0 commit comments

Comments
 (0)