From abfe31d5d22a0ed1cc6ef32cf73fc1826b090b1c Mon Sep 17 00:00:00 2001 From: David Shah Date: Mon, 30 Dec 2019 15:53:24 +0000 Subject: HeAP: increase timeout Signed-off-by: David Shah --- common/placer_heap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/placer_heap.cc b/common/placer_heap.cc index 01e50123..f336f6e4 100644 --- a/common/placer_heap.cc +++ b/common/placer_heap.cc @@ -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)); -- cgit v1.2.3