aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-09-29 17:26:45 -0700
committerKevin Cheng <kevin.cheng@arm.com>2021-09-30 18:15:36 +0100
commit7fb8fa1826812c305cfcc64e3df256f408fea5a0 (patch)
tree4ab10111fb4270e14f8f948c9a9b6ae833be0341
parent269e898e23cfb4acb337beb5385620ac5afd9df8 (diff)
downloadreference_model-7fb8fa1826812c305cfcc64e3df256f408fea5a0.tar.gz
Remove duplicate output tensor in cond_if_binary test
Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: Ic0c4bd1a55c6782aeacb77163a3a093edb86d437
-rw-r--r--verif/tosa_test_gen.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/verif/tosa_test_gen.py b/verif/tosa_test_gen.py
index 4aa42da..7b71cf4 100644
--- a/verif/tosa_test_gen.py
+++ b/verif/tosa_test_gen.py
@@ -2164,7 +2164,6 @@ class TosaTestGen:
cond_tens = self.ser.addConst([], DType.BOOL, [cond])
result_tens = self.ser.addOutput(a.shape, a.dtype)
- self.ser.currBasicBlock.addOutput(result_tens.name)
# Create the attribute with the names of the then/else blocks
then_block = "THEN_BLOCK"