Main Compliance: TRANSPOSE_CONV2D support

Update data generator for main compliance values.
Add test generation support.
Fixed test set by including large 65k tests that were missing.

Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com>
Change-Id: I8668c774e01c17e5d999aadf99c317e2dd893857
diff --git a/verif/generator/tosa_error_if.py b/verif/generator/tosa_error_if.py
index 5874123..a5a834f 100644
--- a/verif/generator/tosa_error_if.py
+++ b/verif/generator/tosa_error_if.py
@@ -2701,7 +2701,7 @@
     @staticmethod
     def ivNonPositiveOutputShape(**kwargs):
         args = kwargs["args"]
-        output_shape = args[3]
+        output_shape = args["out_shape"]
         if output_shape[1] <= 0 or output_shape[2] <= 0:
             # Negative output shape
             return True