Skip to content

Commit 58bd700

Browse files
committed
clang-format
Signed-off-by: João Mai <jmai@precisioninno.com>
1 parent d754e9e commit 58bd700

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/mpl/src/hier_rtlmp.cpp

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)