Skip to content

Commit

Permalink
drt: skip special nets in processBTermsAboveTopLayer
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
  • Loading branch information
maliberty committed Apr 4, 2023
1 parent 47991be commit 3d00f59
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 3d00f59

Please sign in to comment.