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 657bde0 commit 109c1aaCopy full SHA for 109c1aa
flow/scripts/resize.tcl
@@ -27,8 +27,11 @@ puts ""
27
set_dont_use $::env(DONT_USE_CELLS)
28
29
# Do not buffer chip-level designs
30
-if {![info exists ::env(FOOTPRINT)] } {
31
- if { ![info exists ::env(PORTS_BUFFER)] || $::env(PORTS_BUFFER) == 1 } {
+# by default, IO ports will be buffered
+# to not buffer IO ports, set environment variable
32
+# DONT_BUFFER_PORT = 1
33
+if { ![info exists ::env(FOOTPRINT)] } {
34
+ if { ![info exists ::env(DONT_BUFFER_PORTS)] || $::env(DONT_BUFFER_PORTS) == 0 } {
35
puts "Perform port buffering..."
36
buffer_ports
37
}
0 commit comments