From 374d2120f77ccf126650c26961f6bf471e84f600 Mon Sep 17 00:00:00 2001 From: Tobias Platen Date: Fri, 5 Jun 2020 15:13:26 +0200 Subject: [PATCH] uncomment rtlil.convert in test_l0_cache that causes runtime error --- src/soc/experiment/l0_cache.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/soc/experiment/l0_cache.py b/src/soc/experiment/l0_cache.py index 434ab393..bff6958a 100644 --- 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') -- 2.30.2