Skip to content

Commit f35efdb

Browse files
committed
Merge branch 'master' of https://github.com/The-OpenROAD-Project/OpenROAD into grt_real_capacity
2 parents 720c435 + 6db0147 commit f35efdb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/grt/src/GlobalRouter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,8 @@ std::vector<int> GlobalRouter::routeLayerLengths(odb::dbNet* db_net)
571571
// dbu wirelength for wires, via count for vias
572572
std::vector<int> layer_lengths(tech->getLayerCount());
573573

574-
if (!db_net->getSigType().isSupply()) {
574+
if (!db_net->getSigType().isSupply() && !db_net->isSpecial()
575+
&& db_net->getSWires().empty() && !db_net->isConnectedByAbutment()) {
575576
GRoute& route = routes[db_net];
576577
std::set<RoutePt> route_pts;
577578
// Compute wirelengths from route segments

0 commit comments

Comments
 (0)