From: Cesar Strauss Date: Tue, 2 Jun 2020 09:37:57 +0000 (-0300) Subject: Allow at least one operand to be fetched X-Git-Tag: div_pipeline~660 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=837c64b4d0423891cd0a115b4a9265d49523dd5f;p=soc.git Allow at least one operand to be fetched We successfully disabled all rel signals. One was immediate, the other was masked. Let's enable at least one of them, for now. When the test code is complete, we will be able to issue several transactions in sequence, with different combinations. We are not there yet. --- diff --git a/src/soc/experiment/test/test_compalu_multi.py b/src/soc/experiment/test/test_compalu_multi.py index 95e8f3c5..e80f2317 100644 --- a/src/soc/experiment/test/test_compalu_multi.py +++ b/src/soc/experiment/test/test_compalu_multi.py @@ -144,7 +144,7 @@ class CompUnitParallelTest: def driver(self): print("Begin parallel test.") yield from self.operation(5, 2, InternalOp.OP_ADD, inv_a=0, - imm=8, imm_ok=1, rdmaskn=(1, 0)) + imm=8, imm_ok=0, rdmaskn=(1, 0)) def operation(self, a, b, op, inv_a=0, imm=0, imm_ok=0, zero_a=0, rdmaskn=(0, 0)):