From: Cesar Strauss Date: Sat, 5 Dec 2020 12:37:18 +0000 (-0300) Subject: Use the DummyALU regspec and its corresponding OpSubset X-Git-Tag: 24jan2021_ls180~74 X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=c541a3bfcec8e808ed4d5dac7c57705e0f846799 Use the DummyALU regspec and its corresponding OpSubset --- diff --git a/src/soc/fu/compunits/formal/proof_fu.py b/src/soc/fu/compunits/formal/proof_fu.py index dd6c743e..bba92900 100644 --- a/src/soc/fu/compunits/formal/proof_fu.py +++ b/src/soc/fu/compunits/formal/proof_fu.py @@ -15,7 +15,7 @@ import unittest from soc.fu.compunits.compunits import FunctionUnitBaseSingle from soc.experiment.alu_hier import DummyALU from soc.experiment.compalu_multi import MultiCompUnit -from soc.fu.alu.alu_input_record import CompALUOpSubset +from soc.fu.cr.cr_input_record import CompCROpSubset class Driver(Elaboratable): @@ -26,8 +26,14 @@ class Driver(Elaboratable): m = Module() comb = m.d.comb sync = m.d.sync + inspec = [('INT', 'a', '0:15'), + ('INT', 'b', '0:15'), + ('INT', 'c', '0:15')] + outspec = [('INT', 'o', '0:15')] + + regspec = (inspec, outspec) alu = DummyALU(16) - m.submodules.dut = dut = MultiCompUnit(16, alu, CompALUOpSubset) + m.submodules.dut = dut = MultiCompUnit(regspec, alu, CompCROpSubset) issue = dut.issue_i busy = dut.busy_o @@ -186,7 +192,13 @@ class FUTestCase(FHDLTestCase): self.assertFormal(module, mode="bmc", depth=10) self.assertFormal(module, mode="cover", depth=10) def test_ilang(self): - dut = MultiCompUnit(16, DummyALU(16), CompALUOpSubset) + inspec = [('INT', 'a', '0:15'), + ('INT', 'b', '0:15'), + ('INT', 'c', '0:15')] + outspec = [('INT', 'o', '0:15')] + + regspec = (inspec, outspec) + dut = MultiCompUnit(regspec, DummyALU(16), CompCROpSubset) vl = rtlil.convert(dut, ports=dut.ports()) with open("multicompunit.il", "w") as f: f.write(vl)