Rename pins to original names

This commit is contained in:
mrg 2021-01-21 15:22:54 -08:00
parent e8239c5e77
commit db142bcd5a
4 changed files with 6 additions and 3 deletions

View File

@ -57,6 +57,12 @@ class design(hierarchy_design):
self.cell_name,
GDS["unit"])
# Convert names back to the original names
# so that copying will use the new names
for pin_name in self.pin_map:
for index1, pin in enumerate(self.pin_map[pin_name]):
self.pin_map[pin_name][index1].name = self.get_original_pin_name(pin.name)
self.width = width
self.height = height

View File

@ -23,7 +23,6 @@ class sram_1bank_2mux_1rw_1r_test(openram_test):
globals.init_openram(config_file)
from sram_config import sram_config
OPTS.route_supplies = False
OPTS.num_rw_ports = 1
OPTS.num_r_ports = 1
OPTS.num_w_ports = 0

View File

@ -23,7 +23,6 @@ class sram_1bank_2mux_global_test(openram_test):
globals.init_openram(config_file)
from sram_config import sram_config
OPTS.local_array_size = 8
OPTS.route_supplies = False
c = sram_config(word_size=8,
num_words=32,
num_banks=1)

View File

@ -33,7 +33,6 @@ class sram_1bank_2mux_func_test(openram_test):
from characterizer import functional
from sram_config import sram_config
OPTS.local_array_size = 8
OPTS.route_supplies = False
c = sram_config(word_size=8,
num_words=32,
num_banks=1)