Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DRT: Stubborn Tiles flow #6213

2 changes: 1 addition & 1 deletion src/drt/include/triton_route/TritonRoute.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class TritonRoute
void reportDRC(const std::string& file_name,
const std::list<std::unique_ptr<frMarker>>& markers,
const std::string& marker_name,
odb::Rect drcBox = odb::Rect(0, 0, 0, 0));
odb::Rect drcBox = odb::Rect(0, 0, 0, 0)) const;
void checkDRC(const char* filename,
int x1,
int y1,
Expand Down
3 changes: 2 additions & 1 deletion src/drt/src/TritonRoute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,7 @@ void TritonRoute::stepDR(int size,
workerMarkerDecay,
getMode(ripupMode),
followGuide});
dr_->incIter();
num_drvs_ = design_->getTopBlock()->getNumMarkers();
}

Expand Down Expand Up @@ -1259,7 +1260,7 @@ int TritonRoute::getWorkerResultsSize()
void TritonRoute::reportDRC(const std::string& file_name,
const frList<std::unique_ptr<frMarker>>& markers,
const std::string& marker_name,
Rect drcBox)
Rect drcBox) const
{
odb::dbBlock* block = db_->getChip()->getBlock();
odb::dbMarkerCategory* tool_category
Expand Down
Loading
Loading