From 4916eb9bb16b09a547e97e7aa18444660d44ddd8 Mon Sep 17 00:00:00 2001 From: David Shah Date: Tue, 26 Nov 2019 21:36:29 +0000 Subject: HeAP: more realistic timeout threshold Signed-off-by: David Shah --- common/placer_heap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/placer_heap.cc') diff --git a/common/placer_heap.cc b/common/placer_heap.cc index 4a380a04..80ce67b2 100644 --- a/common/placer_heap.cc +++ b/common/placer_heap.cc @@ -800,7 +800,7 @@ class HeAPPlacer ripup_radius = std::max(std::max(max_x, max_y), ripup_radius * 2); } - if (total_iters_noreset > std::max(50000, 1000 * int(ctx->cells.size()))) { + if (total_iters_noreset > std::max(5000, 8 * int(ctx->cells.size()))) { log_error("Unable to find legal placement for all cells, design is probably at utilisation limit.\n"); } -- cgit v1.2.3