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 47d834f + 041569a commit 5f5a83eCopy full SHA for 5f5a83e
src/grt/src/GlobalRouter.cpp
@@ -215,7 +215,8 @@ NetRouteMap GlobalRouter::getPartialRoutes()
215
// TODO: still need to fix this during incremental grt
216
if (is_incremental_) {
217
for (const auto& [db_net, net] : db_net_map_) {
218
- if (routes_[db_net].empty()) {
+ // Do not add local nets, as they are not routed in incremental grt.
219
+ if (routes_[db_net].empty() && !net->isLocal()) {
220
GRoute route;
221
net_routes.insert({db_net, route});
222
fastroute_->getPlanarRoute(db_net, net_routes[db_net]);
0 commit comments