Skip to content

Commit

Permalink
gpl: change default non-virtual trigger
Browse files Browse the repository at this point in the history
Signed-off-by: Augusto Berndt <[email protected]>
  • Loading branch information
gudeh committed Nov 14, 2024
1 parent 17e33be commit 7302305
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gpl/include/gpl/Replace.h
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class Replace
int routabilityMaxInflationIter_ = 4;

float timingNetWeightMax_ = 1.9;
float keepResizeBelowOverflow_ = 0.0;
float keepResizeBelowOverflow_ = 0.3;

bool timingDrivenMode_ = true;
bool routabilityDrivenMode_ = true;
Expand Down
2 changes: 1 addition & 1 deletion src/gpl/src/nesterovBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ class NesterovPlaceVars
float initialPrevCoordiUpdateCoef = 100; // z_ref_alpha
float referenceHpwl = 446000000; // refDeltaHpwl
float routabilityCheckOverflow = 0.30;
float keepResizeBelowOverflow = 0.0;
float keepResizeBelowOverflow = 0.3;

static const int maxRecursionWlCoef = 10;
static const int maxRecursionInitSLPCoef = 10;
Expand Down
2 changes: 1 addition & 1 deletion src/gpl/src/replace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ void Replace::reset()
routabilityMaxInflationIter_ = 4;

timingDrivenMode_ = true;
keepResizeBelowOverflow_ = 0.0;
keepResizeBelowOverflow_ = 0.3;
routabilityDrivenMode_ = true;
routabilityUseRudy_ = true;
uniformTargetDensityMode_ = false;
Expand Down

0 comments on commit 7302305

Please sign in to comment.