mirror of https://github.com/VLSIDA/OpenRAM.git
Add spares for sky130 unit tests.
This commit is contained in:
parent
bbfccd1e00
commit
cb3d7b9d5d
|
|
@ -22,9 +22,19 @@ class sram_1bank_8mux_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=2,
|
c = sram_config(word_size=2,
|
||||||
num_words=256,
|
num_words=256,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row=16
|
c.words_per_row=16
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -23,9 +23,19 @@ class sram_1bank_2mux_global_test(openram_test):
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
OPTS.local_array_size = 8
|
OPTS.local_array_size = 8
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=8,
|
c = sram_config(word_size=8,
|
||||||
num_words=32,
|
num_words=32,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row=2
|
c.words_per_row=2
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,19 @@ class sram_1bank_2mux_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=4,
|
c = sram_config(word_size=4,
|
||||||
num_words=32,
|
num_words=32,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row=2
|
c.words_per_row=2
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -22,11 +22,20 @@ class sram_1bank_2mux_wmask_spare_cols_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=8,
|
c = sram_config(word_size=8,
|
||||||
write_size=4,
|
write_size=4,
|
||||||
num_spare_cols=3,
|
|
||||||
num_words=64,
|
num_words=64,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols+2,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row = 2
|
c.words_per_row = 2
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -22,10 +22,20 @@ class sram_1bank_2mux_wmask_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=8,
|
c = sram_config(word_size=8,
|
||||||
write_size=4,
|
write_size=4,
|
||||||
num_words=64,
|
num_words=64,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row = 2
|
c.words_per_row = 2
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -23,10 +23,20 @@ class sram_1bank_32b_1024_wmask_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=32,
|
c = sram_config(word_size=32,
|
||||||
write_size=8,
|
write_size=8,
|
||||||
num_words=1024,
|
num_words=1024,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
debug.info(1, "Layout test for {}rw,{}r,{}w sram "
|
debug.info(1, "Layout test for {}rw,{}r,{}w sram "
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,19 @@ class sram_1bank_4mux_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=4,
|
c = sram_config(word_size=4,
|
||||||
num_words=64,
|
num_words=64,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row=4
|
c.words_per_row=4
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,19 @@ class sram_1bank_8mux_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=2,
|
c = sram_config(word_size=2,
|
||||||
num_words=128,
|
num_words=128,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row=8
|
c.words_per_row=8
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -22,10 +22,19 @@ class sram_1bank_nomux_spare_cols_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=8,
|
c = sram_config(word_size=8,
|
||||||
num_spare_cols=3,
|
|
||||||
num_words=16,
|
num_words=16,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols+2,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row = 1
|
c.words_per_row = 1
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,20 @@ class sram_1bank_nomux_wmask_sparecols_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=8,
|
c = sram_config(word_size=8,
|
||||||
write_size=4,
|
write_size=4,
|
||||||
num_words=16,
|
num_words=16,
|
||||||
num_spare_cols=3,
|
num_banks=1,
|
||||||
num_banks=1)
|
num_spare_cols=num_spare_cols+2,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row = 1
|
c.words_per_row = 1
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
|
|
@ -22,10 +22,20 @@ class sram_1bank_nomux_wmask_test(openram_test):
|
||||||
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=8,
|
c = sram_config(word_size=8,
|
||||||
write_size=4,
|
write_size=4,
|
||||||
num_words=16,
|
num_words=16,
|
||||||
num_banks=1)
|
num_banks=1,
|
||||||
|
num_spare_cols=num_spare_cols+2,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row = 1
|
c.words_per_row = 1
|
||||||
c.recompute_sizes()
|
c.recompute_sizes()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue