Skip to content

Commit

Permalink
Merge pull request #4862 from AcKoucher/mpl2-io-bug
Browse files Browse the repository at this point in the history
mpl2: fix bug introduced in io blockages computation fix
  • Loading branch information
maliberty authored Apr 3, 2024
2 parents 1723d49 + 632e9e7 commit c3da78b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mpl2/src/hier_rtlmp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3159,9 +3159,9 @@ void HierRTLMP::setIOClustersBlockages()
// Note that the range can be larger than the respective core dimension.
// As SA only sees what is inside its current outline, this is not a problem.
if (pin_ranges[L].second > pin_ranges[L].first) {
macro_blockages_.emplace_back(root_ux,
macro_blockages_.emplace_back(root_lx,
pin_ranges[L].first,
root_ux + std::min(max_width, depth),
root_lx + std::min(max_width, depth),
pin_ranges[L].second);
debugPrint(logger_,
MPL,
Expand Down

0 comments on commit c3da78b

Please sign in to comment.