Skip to content

Commit e7cad8f

Browse files
litghostacomodi
authored andcommitted
Disable recalculate tolerance errors (demote to warning).
Signed-off-by: Keith Rothman <[email protected]> Signed-off-by: Alessandro Comodi <[email protected]>
1 parent 35d1036 commit e7cad8f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

vpr/src/place/place.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3507,9 +3507,8 @@ static int check_placement_costs(const t_placer_costs& costs,
35073507
comp_td_costs(delay_model, &timing_cost_check);
35083508
//VTR_LOG("timing_cost recomputed from scratch: %g\n", timing_cost_check);
35093509
if (fabs(timing_cost_check - costs.timing_cost) > costs.timing_cost * ERROR_TOL) {
3510-
VTR_LOG_ERROR("timing_cost_check: %g and timing_cost: %g differ in check_place.\n",
3511-
timing_cost_check, costs.timing_cost);
3512-
error++;
3510+
VTR_LOG_WARN("timing_cost_check: %g and timing_cost: %g differ in check_place.\n",
3511+
timing_cost_check, costs.timing_cost);
35133512
}
35143513
}
35153514
return error;

0 commit comments

Comments
 (0)