From 51d82a95aba04802a10010f942160e5c45cd82c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Sat, 18 May 2024 22:19:10 +0200 Subject: [PATCH] mpl2: MACRO_PLACE_HALO x and y are now separate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit same as for classic macro placement. Signed-off-by: Øyvind Harboe --- flow/scripts/macro_place_util.tcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flow/scripts/macro_place_util.tcl b/flow/scripts/macro_place_util.tcl index 18cace7565..3a720254ad 100644 --- a/flow/scripts/macro_place_util.tcl +++ b/flow/scripts/macro_place_util.tcl @@ -72,7 +72,8 @@ if {[find_macros] != ""} { append additional_rtlmp_args " -min_num_macro $env(RTLMP_MIN_MACRO)" } - append additional_rtlmp_args " -halo_width $halo_max" + append additional_rtlmp_args " -halo_width $halo_x" + append additional_rtlmp_args " -halo_height $halo_y" if { [info exists ::env(RTLMP_MIN_AR)]} { append additional_rtlmp_args " -min_ar $env(RTLMP_MIN_AR)"