From acbe1f0104604f0e30e21117a70a83bdc6a0a9ec Mon Sep 17 00:00:00 2001 From: Matt Liberty Date: Wed, 30 Oct 2024 17:15:08 +0000 Subject: [PATCH] Print the computed placement density with using PLACE_DENSITY_LB_ADDON Signed-off-by: Matt Liberty --- flow/scripts/set_place_density.tcl | 1 + 1 file changed, 1 insertion(+) diff --git a/flow/scripts/set_place_density.tcl b/flow/scripts/set_place_density.tcl index 70417129da..40146da16b 100644 --- a/flow/scripts/set_place_density.tcl +++ b/flow/scripts/set_place_density.tcl @@ -7,6 +7,7 @@ if {[info exist ::env(PLACE_DENSITY_LB_ADDON)]} { if {$place_density > 1.0} { utl::error FLW 24 "Place density exceeds 1.0 (current PLACE_DENSITY_LB_ADDON = $::env(PLACE_DENSITY_LB_ADDON)). Please check if the value of PLACE_DENSITY_LB_ADDON is between 0 and 0.99." } + puts "Placement density is $place_density, computed from PLACE_DENSITY_LB_ADDON $::env(PLACE_DENSITY_LB_ADDON) and lower bound $place_density_lb" } else { set place_density $::env(PLACE_DENSITY) }