Start with a simpler test case
authorCesar Strauss <cestrauss@gmail.com>
Sun, 28 Jun 2020 22:17:31 +0000 (19:17 -0300)
committerCesar Strauss <cestrauss@gmail.com>
Sun, 28 Jun 2020 22:18:55 +0000 (19:18 -0300)
Leave other variants (immediate, rdmaskn) for later.

src/soc/experiment/test/test_compalu_multi.py

index 7b79be9aca21cdc8adeecc3bc4415265c053a4d8..31a50bba08a96791aa47b1b8281f5f8b462fca15 100644 (file)
@@ -153,8 +153,7 @@ class CompUnitParallelTest:
 
     def driver(self):
         print("Begin parallel test.")
-        yield from self.operation(5, 2, InternalOp.OP_NOP, inv_a=0,
-                                  imm=8, imm_ok=0, rdmaskn=(1, 0))
+        yield from self.operation(5, 2, InternalOp.OP_ADD)
 
     def operation(self, a, b, op, inv_a=0, imm=0, imm_ok=0, zero_a=0,
                   rdmaskn=(0, 0)):