mirror of https://github.com/VLSIDA/OpenRAM.git
Rename pins to original names
This commit is contained in:
parent
e8239c5e77
commit
db142bcd5a
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue