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 74c112e commit f7cf009Copy full SHA for f7cf009
flow/scripts/macro_place_util.tcl
@@ -117,11 +117,14 @@ if {[find_macros] != ""} {
117
append additional_rtlmp_args " -fence_uy $env(RTLMP_FENCE_UY)"
118
}
119
120
+ set all_args $additional_rtlmp_args
121
- puts "Call Macro Placer $additional_rtlmp_args"
122
+ if { [info exists ::env(RTLMP_ARGS)] } {
123
+ set all_args $::env(RTLMP_ARGS)
124
+ }
125
- rtl_macro_placer \
- {*}$additional_rtlmp_args
126
+ puts "rtl_macro_placer [join $all_args " "]"
127
+ rtl_macro_placer {*}$all_args
128
129
puts "Delete buffers for RTLMP flow..."
130
remove_buffers
0 commit comments