Skip to content

Commit db86188

Browse files
authored
Merge pull request #8840 from The-OpenROAD-Project-staging/grt_fix_incremental
grt: initialize FastRoute during incremental
2 parents 8d776b7 + 0496c31 commit db86188

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/grt/src/GlobalRouter.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5204,6 +5204,12 @@ std::vector<Net*> GlobalRouter::updateDirtyRoutes(bool save_guides)
52045204
callback_handler_->triggerOnPinAccessUpdateRequired();
52055205
std::vector<Net*> dirty_nets;
52065206

5207+
if (!initialized_) {
5208+
int min_layer, max_layer;
5209+
getMinMaxLayer(min_layer, max_layer);
5210+
initFastRoute(min_layer, max_layer);
5211+
}
5212+
52075213
if (!dirty_nets_.empty()) {
52085214
fastroute_->setVerbose(false);
52095215
fastroute_->clearNetsToRoute();

0 commit comments

Comments
 (0)