From 0555a129743291a134944a66cfe325cbec36ee90 Mon Sep 17 00:00:00 2001 From: Lofty Date: Sun, 4 Dec 2022 07:31:32 +0000 Subject: [PATCH] awooter: set congestion parameters --- common/route/awooter.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/route/awooter.cc b/common/route/awooter.cc index af16854c..5ea8939b 100644 --- a/common/route/awooter.cc +++ b/common/route/awooter.cc @@ -317,8 +317,8 @@ extern "C" { NEXTPNR_NAMESPACE_BEGIN bool router_awooter(Context *ctx) { - auto pressure = ctx->setting("awooter-pressure-factor", 5.0); - auto history = ctx->setting("awooter-history-factor", 5.0); + auto pressure = ctx->setting("awooter-pressure-factor", 0.05); + auto history = ctx->setting("awooter-history-factor", 0.04); log_info("Running Awooter...\n"); auto result = npnr_router_awooter(ctx, pressure, history); log_info("Router returned: %d\n", result);