convert to individual PipeSpecs for each pipeline
[soc.git] / src / soc / fu / alu / test / test_pipe_caller.py
index 875bfab43bcea61ee85e94fe28d7b3b3ee4458cf..dbdb4f6e4acf24dba36a1a4a72f449f71ab6a3fb 100644 (file)
@@ -163,7 +163,7 @@ class ALUTestCase(FHDLTestCase):
             self.run_tst_program(Program(lst), initial_regs, {})
 
     def test_ilang(self):
-        rec = CompALUOpSubset()
+        rec = ALUPipeSpec.opsubsetkls()
 
         pspec = ALUPipeSpec(id_wid=2, op_wid=get_rec_width(rec))
         alu = ALUBasePipe(pspec)
@@ -186,7 +186,7 @@ class TestRunner(FHDLTestCase):
 
         m.submodules.pdecode2 = pdecode2 = PowerDecode2(pdecode)
 
-        rec = CompALUOpSubset()
+        rec = ALUPipeSpec.opsubsetkls()
 
         pspec = ALUPipeSpec(id_wid=2, op_wid=get_rec_width(rec))
         m.submodules.alu = alu = ALUBasePipe(pspec)