We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d776b7 + 0496c31 commit db86188Copy full SHA for db86188
1 file changed
src/grt/src/GlobalRouter.cpp
@@ -5204,6 +5204,12 @@ std::vector<Net*> GlobalRouter::updateDirtyRoutes(bool save_guides)
5204
callback_handler_->triggerOnPinAccessUpdateRequired();
5205
std::vector<Net*> dirty_nets;
5206
5207
+ if (!initialized_) {
5208
+ int min_layer, max_layer;
5209
+ getMinMaxLayer(min_layer, max_layer);
5210
+ initFastRoute(min_layer, max_layer);
5211
+ }
5212
+
5213
if (!dirty_nets_.empty()) {
5214
fastroute_->setVerbose(false);
5215
fastroute_->clearNetsToRoute();
0 commit comments