Skip to content

Commit

Permalink
HeAP: increase timeout
Browse files Browse the repository at this point in the history
Signed-off-by: David Shah <[email protected]>
  • Loading branch information
gatecat committed Dec 30, 2019
1 parent 247e18c commit abfe31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/placer_heap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ class HeAPPlacer
while (!placed) {

// Set a conservative timeout
if (iter > std::max(1000, 3 * int(ctx->cells.size())))
if (iter > std::max(10000, 3 * int(ctx->cells.size())))
log_error("Unable to find legal placement for cell '%s', check constraints and utilisation.\n",
ctx->nameOf(ci));

Expand Down

0 comments on commit abfe31d

Please sign in to comment.