aboutsummaryrefslogtreecommitdiff
path: root/verif/tosa_verif_build_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'verif/tosa_verif_build_tests.py')
-rwxr-xr-xverif/tosa_verif_build_tests.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/verif/tosa_verif_build_tests.py b/verif/tosa_verif_build_tests.py
index 15482e6..343d8d4 100755
--- a/verif/tosa_verif_build_tests.py
+++ b/verif/tosa_verif_build_tests.py
@@ -192,6 +192,15 @@ def parseArgs():
help="Create test with a particular DType (may be repeated)",
)
+ parser.add_argument(
+ "--num-const-inputs-concat",
+ dest="num_const_inputs_concat",
+ default=0,
+ choices=[0, 1, 2, 3],
+ type=int,
+ help="Allow constant input tensors for concat operator",
+ )
+
args = parser.parse_args()
return args