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.
2 parents 5bdee55 + 109c1aa commit af895b0Copy full SHA for af895b0
flow/scripts/resize.tcl
@@ -27,9 +27,14 @@ puts ""
27
set_dont_use $::env(DONT_USE_CELLS)
28
29
# Do not buffer chip-level designs
30
-if {![info exists ::env(FOOTPRINT)]} {
31
- puts "Perform port buffering..."
32
- buffer_ports
+# by default, IO ports will be buffered
+# to not buffer IO ports, set environment variable
+# 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
+ }
38
}
39
40
puts "Perform buffer insertion..."
0 commit comments