Skip to content

Commit

Permalink
Merge pull request #3127 from The-OpenROAD-Project-staging/drt-spc-bterm
Browse files Browse the repository at this point in the history
drt: skip special nets in processBTermsAboveTopLayer
  • Loading branch information
maliberty authored Apr 4, 2023
2 parents 47991be + 3d00f59 commit 580bd35
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/drt/src/TritonRoute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -974,6 +974,9 @@ void TritonRoute::processBTermsAboveTopLayer()
if (top_tech_layer != nullptr) {
int top_layer_idx = top_tech_layer->getRoutingLevel();
for (auto bterm : block->getBTerms()) {
if (bterm->getNet()->isSpecial()) {
continue;
}
int bterm_bottom_layer_idx = std::numeric_limits<int>::max();
for (auto bpin : bterm->getBPins()) {
for (auto box : bpin->getBoxes()) {
Expand Down

0 comments on commit 580bd35

Please sign in to comment.