projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1ad948
)
uncomment rtlil.convert in test_l0_cache that causes runtime error
author
Tobias Platen
<tplaten@posteo.de>
Fri, 5 Jun 2020 13:13:26 +0000
(15:13 +0200)
committer
Tobias Platen
<tplaten@posteo.de>
Fri, 5 Jun 2020 13:13:26 +0000
(15:13 +0200)
src/soc/experiment/l0_cache.py
patch
|
blob
|
history
diff --git
a/src/soc/experiment/l0_cache.py
b/src/soc/experiment/l0_cache.py
index 434ab393b4fc3e6acb7dcddc68fee46186748441..bff6958a61b4a1696cc4b7077bf709355160bab3 100644
(file)
--- a/
src/soc/experiment/l0_cache.py
+++ b/
src/soc/experiment/l0_cache.py
@@
-554,9
+554,9
@@
def data_merger_merge(dut):
def test_l0_cache():
dut = TstL0CacheBuffer()
- vl = rtlil.convert(dut, ports=dut.ports())
- with open("test_basic_l0_cache.il", "w") as f:
- f.write(vl)
+
#
vl = rtlil.convert(dut, ports=dut.ports())
+
#
with open("test_basic_l0_cache.il", "w") as f:
+
#
f.write(vl)
run_simulation(dut, l0_cache_ldst(dut),
vcd_name='test_l0_cache_basic.vcd')