Skip to content

Commit 6b7be47

Browse files
committed
increasing the maxmimum acceptable value for the timing normalization factor
1 parent ae8b915 commit 6b7be47

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

vpr/src/place/place_util.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@
3737
* @param MAX_INV_TIMING_COST Stops inverse timing cost from going to infinity
3838
* with very lax timing constraints, which avoids multiplying by a
3939
* gigantic timing_cost_norm when auto-normalizing. The exact value
40-
* of this cost has relatively little impact, but should not be large
41-
* enough to be on the order of timing costs for normal constraints.
40+
* of this cost has relatively little impact, but should be large
41+
* enough to not affect the timing costs computatation for normal
42+
* constraints.
4243
*
4344
* @param place_algorithm Determines how the member values are updated upon
4445
* each temperature change during the placer annealing process.
@@ -64,7 +65,7 @@ class t_placer_costs {
6465
void update_norm_factors();
6566

6667
private:
67-
double MAX_INV_TIMING_COST = 1.e9;
68+
double MAX_INV_TIMING_COST = 1.e12;
6869
t_place_algorithm place_algorithm;
6970
};
7071

0 commit comments

Comments
 (0)