From 8ce23d7f1782a7eeca614437d98b97d8d8f20e0f Mon Sep 17 00:00:00 2001 From: mrg Date: Thu, 1 Oct 2020 07:17:32 -0700 Subject: [PATCH] Provide unique WL driver instance name --- compiler/modules/local_bitcell_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/local_bitcell_array.py b/compiler/modules/local_bitcell_array.py index 80708dec..c07b4f1b 100644 --- a/compiler/modules/local_bitcell_array.py +++ b/compiler/modules/local_bitcell_array.py @@ -124,7 +124,7 @@ class local_bitcell_array(bitcell_base_array.bitcell_base_array): self.wl_insts = [] self.driver_wordline_outputs = [] for port in self.all_ports: - self.wl_insts.append(self.add_inst(name="wl_driver", + self.wl_insts.append(self.add_inst(name="wl_driver{}".format(port), mod=self.wl_array)) temp = [] temp += [self.get_rbl_wordline_names(port)[port]]