We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35d1036 commit e7cad8fCopy full SHA for e7cad8f
vpr/src/place/place.cpp
@@ -3507,9 +3507,8 @@ static int check_placement_costs(const t_placer_costs& costs,
3507
comp_td_costs(delay_model, &timing_cost_check);
3508
//VTR_LOG("timing_cost recomputed from scratch: %g\n", timing_cost_check);
3509
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++;
+ VTR_LOG_WARN("timing_cost_check: %g and timing_cost: %g differ in check_place.\n",
+ timing_cost_check, costs.timing_cost);
3513
}
3514
3515
return error;
0 commit comments