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 ddc4c20 commit e57c420Copy full SHA for e57c420
flow/scripts/detail_place.tcl
@@ -7,7 +7,7 @@ source $::env(PLATFORM_DIR)/setRC.tcl
7
8
proc do_dpl { } {
9
# Only for use with hybrid rows
10
- if { [env_var_equals BALANCE_ROWS 1] } {
+ if { $::env(BALANCE_ROWS) } {
11
balance_row_usage
12
}
13
@@ -16,7 +16,7 @@ proc do_dpl { } {
16
-right $::env(CELL_PAD_IN_SITES_DETAIL_PLACEMENT)
17
detailed_placement
18
19
- if { [env_var_equals ENABLE_DPO 1] } {
+ if { $::env(ENABLE_DPO) } {
20
if { [env_var_exists_and_non_empty DPO_MAX_DISPLACEMENT] } {
21
improve_placement -max_displacement $::env(DPO_MAX_DISPLACEMENT)
22
} else {
0 commit comments