We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47991be + 3d00f59 commit 580bd35Copy full SHA for 580bd35
src/drt/src/TritonRoute.cpp
@@ -974,6 +974,9 @@ void TritonRoute::processBTermsAboveTopLayer()
974
if (top_tech_layer != nullptr) {
975
int top_layer_idx = top_tech_layer->getRoutingLevel();
976
for (auto bterm : block->getBTerms()) {
977
+ if (bterm->getNet()->isSpecial()) {
978
+ continue;
979
+ }
980
int bterm_bottom_layer_idx = std::numeric_limits<int>::max();
981
for (auto bpin : bterm->getBPins()) {
982
for (auto box : bpin->getBoxes()) {
0 commit comments