Skip to content

Commit

Permalink
grt: make haveRoutes() a silent check
Browse files Browse the repository at this point in the history
grt::have_routes should be silent in .tcl, AntennaChecker.cc has another
warning of its own and EstimateireParasitics.cc uses placement if
global routing is not available and it doesn't look like it should output
a warning

fixes The-OpenROAD-Project#6293

Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Dec 5, 2024
1 parent 4be68c3 commit bec882c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/grt/src/GlobalRouter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,6 @@ void GlobalRouter::saveCongestion()
bool GlobalRouter::haveRoutes()
{
loadGuidesFromDB();
if (routes_.empty()) {
logger_->warn(GRT, 97, "No global routing found for nets.");
}

bool congested_routes = is_congested_ && !allow_congestion_;
return !routes_.empty() && !congested_routes;
}
Expand Down

0 comments on commit bec882c

Please sign in to comment.