mirror of https://github.com/VLSIDA/OpenRAM.git
Enable power routing for failing FreePDK45 tests (VLSIDA/PrivateRAM#97)
This commit is contained in:
parent
fa74a45d8c
commit
2b15289daf
|
|
@ -23,9 +23,6 @@ class sram_1bank_2mux_1rw_1r_spare_cols_test(openram_test):
|
|||
openram.init_openram(config_file, is_unit_test=True)
|
||||
from openram import sram_config
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
OPTS.num_rw_ports = 1
|
||||
OPTS.num_r_ports = 1
|
||||
OPTS.num_w_ports = 0
|
||||
|
|
|
|||
|
|
@ -23,9 +23,6 @@ class sram_1bank_2mux_1w_1r_spare_cols_test(openram_test):
|
|||
openram.init_openram(config_file, is_unit_test=True)
|
||||
from openram import sram_config
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
OPTS.num_rw_ports = 0
|
||||
OPTS.num_w_ports = 1
|
||||
OPTS.num_r_ports = 1
|
||||
|
|
|
|||
|
|
@ -31,9 +31,6 @@ class sram_1bank_2mux_global_test(openram_test):
|
|||
num_spare_rows = 0
|
||||
num_spare_cols = 0
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
c = sram_config(word_size=8,
|
||||
num_words=32,
|
||||
num_banks=1,
|
||||
|
|
|
|||
|
|
@ -30,9 +30,6 @@ class sram_1bank_2mux_wmask_spare_cols_test(openram_test):
|
|||
num_spare_rows = 0
|
||||
num_spare_cols = 0
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
c = sram_config(word_size=8,
|
||||
write_size=4,
|
||||
num_words=64,
|
||||
|
|
|
|||
|
|
@ -30,9 +30,6 @@ class sram_1bank_2mux_wmask_test(openram_test):
|
|||
num_spare_rows = 0
|
||||
num_spare_cols = 0
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
c = sram_config(word_size=8,
|
||||
write_size=4,
|
||||
num_words=64,
|
||||
|
|
|
|||
|
|
@ -23,9 +23,6 @@ class sram_1bank_4mux_1rw_1r_test(openram_test):
|
|||
openram.init_openram(config_file, is_unit_test=True)
|
||||
from openram import sram_config
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
OPTS.num_rw_ports = 1
|
||||
OPTS.num_r_ports = 1
|
||||
OPTS.num_w_ports = 0
|
||||
|
|
|
|||
|
|
@ -30,9 +30,6 @@ class sram_1bank_4mux_test(openram_test):
|
|||
num_spare_rows = 0
|
||||
num_spare_cols = 0
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
c = sram_config(word_size=4,
|
||||
num_words=64,
|
||||
num_banks=1,
|
||||
|
|
|
|||
|
|
@ -23,9 +23,6 @@ class sram_1bank_8mux_1rw_1r_test(openram_test):
|
|||
openram.init_openram(config_file, is_unit_test=True)
|
||||
from openram import sram_config
|
||||
|
||||
if OPTS.tech_name == "freepdk45":
|
||||
OPTS.route_supplies = False
|
||||
|
||||
OPTS.num_rw_ports = 1
|
||||
OPTS.num_r_ports = 1
|
||||
OPTS.num_w_ports = 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue