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 9d98e8f commit 867f895Copy full SHA for 867f895
flow/scripts/synth.tcl
@@ -58,7 +58,8 @@ if { !$::env(SYNTH_HIERARCHICAL) } {
58
59
if { $::env(SYNTH_MOCK_LARGE_MEMORIES) } {
60
memory_collect
61
- foreach path [tee -q -s result.string select -list t:\$mem_v2] {
+ set select [tee -q -s result.string select -list t:\$mem_v2]
62
+ foreach path [split [string trim $select] "\n"] {
63
set index [string first "/" $path]
64
set module [string range $path 0 [expr {$index - 1}]]
65
set instance [string range $path [expr {$index + 1}] end]
0 commit comments