From: Tobias Platen Date: Fri, 5 Jun 2020 13:13:26 +0000 (+0200) Subject: uncomment rtlil.convert in test_l0_cache that causes runtime error X-Git-Tag: div_pipeline~561 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=374d2120f77ccf126650c26961f6bf471e84f600;p=soc.git uncomment rtlil.convert in test_l0_cache that causes runtime error --- 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')