File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -933,8 +933,10 @@ void HierRTLMP::computePinAccessDepthLimits()
933933
934934 const Tiling tiling = tree_->root ->getTilings ().front ();
935935 // Required for designs that are too tight (i.e. MockArray)
936- const float tiling_min_width = std::floor ((die.getWidth () - tiling.width ())) / 2 ;
937- const float tiling_min_height = std::floor ((die.getHeight () - tiling.height ())) / 2 ;
936+ const float tiling_min_width
937+ = std::floor ((die.getWidth () - tiling.width ())) / 2 ;
938+ const float tiling_min_height
939+ = std::floor ((die.getHeight () - tiling.height ())) / 2 ;
938940
939941 pin_access_depth_limits_.x .min
940942 = std::min (proportional_min_width, tiling_min_width);
@@ -1978,8 +1980,11 @@ bool HierRTLMP::runFineShaping(Cluster* parent,
19781980 " std_cell_area = {} avail_space = {} pa area = {} "
19791981 " std_cell_mixed_area = {} min_target_util = {}" ,
19801982 parent->getName (),
1981- std_cell_cluster_area, avail_space, pin_access_area,
1982- std_cell_mixed_cluster_area, min_target_util);
1983+ std_cell_cluster_area,
1984+ avail_space,
1985+ pin_access_area,
1986+ std_cell_mixed_cluster_area,
1987+ min_target_util);
19831988
19841989 return false ;
19851990 }
You can’t perform that action at this time.
0 commit comments