From a328dbb7484e0760d6df260ccf727e81cc5a3e32 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Mon, 21 Oct 2024 15:37:47 +0300 Subject: [PATCH] fix(configure): fails on ihp user submissions IHP submissions do not have powered netlists, so add a flag to specify that in the shuttles config.yaml file. --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 5c72256..48c7ebb 100755 --- a/configure.py +++ b/configure.py @@ -82,7 +82,7 @@ def __init__(self, config: Config, args): project.golden_harden() if args.update_shuttle: - project.check_ports(True) + project.check_ports(config.powered_netlists, True) project.check_num_cells() self.projects.append(project)