uncomment rtlil.convert in test_l0_cache that causes runtime error
authorTobias Platen <tplaten@posteo.de>
Fri, 5 Jun 2020 13:13:26 +0000 (15:13 +0200)
committerTobias Platen <tplaten@posteo.de>
Fri, 5 Jun 2020 13:13:26 +0000 (15:13 +0200)
src/soc/experiment/l0_cache.py

index 434ab393b4fc3e6acb7dcddc68fee46186748441..bff6958a61b4a1696cc4b7077bf709355160bab3 100644 (file)
@@ -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')