From 271eebdc168feb4182707bc995c0a2aedeb4d3e2 Mon Sep 17 00:00:00 2001 From: amin1377 Date: Mon, 22 May 2023 15:25:03 -0400 Subject: [PATCH] remove crit_path_router_iterations from vpr_args when a fixed chan is used --- vtr_flow/scripts/python_libs/vtr/vpr/vpr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vtr_flow/scripts/python_libs/vtr/vpr/vpr.py b/vtr_flow/scripts/python_libs/vtr/vpr/vpr.py index 208d5ab6082..b7509c1e700 100644 --- a/vtr_flow/scripts/python_libs/vtr/vpr/vpr.py +++ b/vtr_flow/scripts/python_libs/vtr/vpr/vpr.py @@ -165,6 +165,8 @@ def run( """ + if "crit_path_router_iterations" in vpr_args: + del vpr_args["crit_path_router_iterations"] if vpr_args is None: vpr_args = OrderedDict()