mirror of https://github.com/VLSIDA/OpenRAM.git
Changed input format for delay module in xyce delay test.
This commit is contained in:
parent
b3bcf48d2e
commit
da67edbde8
|
|
@ -51,7 +51,11 @@ class timing_sram_test(openram_test):
|
||||||
import tech
|
import tech
|
||||||
loads = [tech.spice["dff_in_cap"]*4]
|
loads = [tech.spice["dff_in_cap"]*4]
|
||||||
slews = [tech.spice["rise_time"]*2]
|
slews = [tech.spice["rise_time"]*2]
|
||||||
data, port_data = d.analyze(probe_address, probe_data, slews, loads)
|
load_slews = []
|
||||||
|
for slew in slews:
|
||||||
|
for load in loads:
|
||||||
|
load_slews.append((load, slew))
|
||||||
|
data, port_data = d.analyze(probe_address, probe_data, load_slews)
|
||||||
# Combine info about port into all data
|
# Combine info about port into all data
|
||||||
data.update(port_data[0])
|
data.update(port_data[0])
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue