2018-05-12 01:32:00 +02:00
|
|
|
#!/usr/bin/env python3
|
2016-11-08 18:57:35 +01:00
|
|
|
"""
|
2018-05-12 01:32:00 +02:00
|
|
|
Run a regression test on various srams
|
2016-11-08 18:57:35 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import unittest
|
2018-01-31 20:48:41 +01:00
|
|
|
from testutils import header,openram_test
|
2016-11-08 18:57:35 +01:00
|
|
|
import sys,os
|
|
|
|
|
sys.path.append(os.path.join(sys.path[0],".."))
|
|
|
|
|
import globals
|
2017-11-16 22:52:58 +01:00
|
|
|
from globals import OPTS
|
2016-11-08 18:57:35 +01:00
|
|
|
import debug
|
|
|
|
|
|
2018-01-30 01:59:29 +01:00
|
|
|
class timing_sram_test(openram_test):
|
2016-11-08 18:57:35 +01:00
|
|
|
|
|
|
|
|
def runTest(self):
|
|
|
|
|
globals.init_openram("config_20_{0}".format(OPTS.tech_name))
|
2017-11-23 00:57:29 +01:00
|
|
|
OPTS.spice_name="ngspice"
|
2017-11-09 20:13:44 +01:00
|
|
|
OPTS.analytical_delay = False
|
2018-07-27 23:06:59 +02:00
|
|
|
OPTS.trim_netlist = False
|
2018-01-26 21:47:32 +01:00
|
|
|
|
2017-11-16 02:02:53 +01:00
|
|
|
# This is a hack to reload the characterizer __init__ with the spice version
|
2018-05-12 01:32:00 +02:00
|
|
|
from importlib import reload
|
2017-11-16 02:02:53 +01:00
|
|
|
import characterizer
|
|
|
|
|
reload(characterizer)
|
|
|
|
|
from characterizer import delay
|
2018-01-26 22:23:11 +01:00
|
|
|
if not OPTS.spice_exe:
|
2018-02-01 00:38:02 +01:00
|
|
|
debug.error("Could not find {} simulator.".format(OPTS.spice_name),-1)
|
2017-11-16 02:02:53 +01:00
|
|
|
|
2016-11-08 18:57:35 +01:00
|
|
|
import sram
|
2018-02-10 00:33:03 +01:00
|
|
|
import tech
|
2016-11-08 18:57:35 +01:00
|
|
|
debug.info(1, "Testing timing for sample 1bit, 16words SRAM with 1 bank")
|
2018-01-20 02:23:38 +01:00
|
|
|
s = sram.sram(word_size=OPTS.word_size,
|
|
|
|
|
num_words=OPTS.num_words,
|
|
|
|
|
num_banks=OPTS.num_banks,
|
2017-09-30 01:22:13 +02:00
|
|
|
name="sram1")
|
2016-11-08 18:57:35 +01:00
|
|
|
|
|
|
|
|
tempspice = OPTS.openram_temp + "temp.sp"
|
|
|
|
|
s.sp_write(tempspice)
|
|
|
|
|
|
2018-07-18 19:33:18 +02:00
|
|
|
probe_address = "1" * s.s.addr_size
|
|
|
|
|
probe_data = s.s.word_size - 1
|
2018-07-27 23:06:59 +02:00
|
|
|
debug.info(1, "Probe address {0} probe data bit {1}".format(probe_address, probe_data))
|
2016-11-08 18:57:35 +01:00
|
|
|
|
2018-02-12 18:33:23 +01:00
|
|
|
corner = (OPTS.process_corners[0], OPTS.supply_voltages[0], OPTS.temperatures[0])
|
2018-07-18 19:33:18 +02:00
|
|
|
d = delay(s.s, tempspice, corner)
|
2017-07-06 17:42:25 +02:00
|
|
|
import tech
|
2018-02-10 00:33:03 +01:00
|
|
|
loads = [tech.spice["msflop_in_cap"]*4]
|
2017-07-06 17:42:25 +02:00
|
|
|
slews = [tech.spice["rise_time"]*2]
|
2018-07-18 19:33:18 +02:00
|
|
|
data = d.analyze(probe_address, probe_data, slews, loads)
|
2018-07-27 00:45:17 +02:00
|
|
|
|
2016-11-08 18:57:35 +01:00
|
|
|
if OPTS.tech_name == "freepdk45":
|
2018-02-24 00:20:52 +01:00
|
|
|
golden_data = {'leakage_power': 0.0007348262,
|
2018-02-22 00:45:49 +01:00
|
|
|
'delay_lh': [0.05799613],
|
|
|
|
|
'read0_power': [0.0384102],
|
|
|
|
|
'read1_power': [0.03279848],
|
|
|
|
|
'write1_power': [0.03693655],
|
|
|
|
|
'write0_power': [0.02717752],
|
|
|
|
|
'slew_hl': [0.03607912],
|
|
|
|
|
'min_period': 0.742,
|
|
|
|
|
'delay_hl': [0.3929995],
|
|
|
|
|
'slew_lh': [0.02160862]}
|
2016-11-08 18:57:35 +01:00
|
|
|
elif OPTS.tech_name == "scn3me_subm":
|
2018-07-27 01:45:09 +02:00
|
|
|
golden_data = {'delay_hl': [11.69536],
|
|
|
|
|
'delay_lh': [1.260921],
|
|
|
|
|
'leakage_power': 0.00039469710000000004,
|
|
|
|
|
'min_period': 20.0,
|
|
|
|
|
'read0_power': [4.40238],
|
|
|
|
|
'read1_power': [4.126633],
|
|
|
|
|
'slew_hl': [1.259555],
|
|
|
|
|
'slew_lh': [0.9150649],
|
|
|
|
|
'write0_power': [4.988347],
|
|
|
|
|
'write1_power': [4.473887]}
|
2016-11-08 18:57:35 +01:00
|
|
|
else:
|
|
|
|
|
self.assertTrue(False) # other techs fail
|
|
|
|
|
|
2017-08-07 19:24:45 +02:00
|
|
|
# Check if no too many or too few results
|
|
|
|
|
self.assertTrue(len(data.keys())==len(golden_data.keys()))
|
2018-07-27 00:45:17 +02:00
|
|
|
|
2018-07-27 01:05:24 +02:00
|
|
|
self.assertTrue(self.check_golden_data(data,golden_data,0.25))
|
2017-08-07 19:24:45 +02:00
|
|
|
|
2017-07-06 17:42:25 +02:00
|
|
|
globals.end_openram()
|
|
|
|
|
|
2016-11-08 18:57:35 +01:00
|
|
|
# instantiate a copdsay of the class to actually run the test
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
(OPTS, args) = globals.parse_args()
|
|
|
|
|
del sys.argv[1:]
|
|
|
|
|
header(__file__, OPTS.tech_name)
|
|
|
|
|
unittest.main()
|