mirror of https://github.com/VLSIDA/OpenRAM.git
Merge remote-tracking branch 'origin/dev' into supply_routing
This commit is contained in:
commit
02bafb4757
|
|
@ -21,6 +21,10 @@ class functional(simulation):
|
||||||
def __init__(self, sram, spfile, corner):
|
def __init__(self, sram, spfile, corner):
|
||||||
simulation.__init__(self, sram, spfile, corner)
|
simulation.__init__(self, sram, spfile, corner)
|
||||||
|
|
||||||
|
# Seed the characterizer with a constant seed for unit tests
|
||||||
|
if OPTS.is_unit_test:
|
||||||
|
random.seed(12345)
|
||||||
|
|
||||||
self.set_corner(corner)
|
self.set_corner(corner)
|
||||||
self.set_spice_constants()
|
self.set_spice_constants()
|
||||||
self.set_stimulus_variables()
|
self.set_stimulus_variables()
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ from design import design
|
||||||
import debug
|
import debug
|
||||||
import math
|
import math
|
||||||
import tech
|
import tech
|
||||||
import random
|
|
||||||
from .stimuli import *
|
from .stimuli import *
|
||||||
from .trim_spice import *
|
from .trim_spice import *
|
||||||
from .charutils import *
|
from .charutils import *
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import globals
|
||||||
from globals import OPTS
|
from globals import OPTS
|
||||||
import debug
|
import debug
|
||||||
|
|
||||||
#@unittest.skip("SKIPPING 22_psram_1bank_4mux_func_test")
|
@unittest.skip("SKIPPING 22_psram_1bank_4mux_func_test")
|
||||||
class psram_1bank_4mux_func_test(openram_test):
|
class psram_1bank_4mux_func_test(openram_test):
|
||||||
|
|
||||||
def runTest(self):
|
def runTest(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue