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 a896bef commit 516e277Copy full SHA for 516e277
flow/scripts/global_place.tcl
@@ -14,7 +14,7 @@ if { $::env(GPL_TIMING_DRIVEN) } {
14
# to not buffer IO ports, set environment variable
15
# DONT_BUFFER_PORT = 1
16
if { ![env_var_exists_and_non_empty FOOTPRINT] } {
17
- if { ![env_var_equals DONT_BUFFER_PORTS 1] } {
+ if { !$::env(DONT_BUFFER_PORTS) } {
18
puts "Perform port buffering..."
19
buffer_ports
20
}
@@ -52,7 +52,7 @@ if { $result != 0 } {
52
53
estimate_parasitics -placement
54
55
-if { [env_var_equals CLUSTER_FLOPS 1] } {
+if { $::env(CLUSTER_FLOPS) } {
56
cluster_flops
57
58
0 commit comments