Minor fixes & add FP16 support to refmodel testing and conformance gen

Improve base inference conformance generation:
* Change to target specific dtypes required for conformance tests.
* Reduce dimension sizes of ERROR_IF tests.
NOTE: Will impact tensor, clamp and all ERROR_IF tests.

Add option to change seed on conformance generation for extra
testing.
Stop creation of convolution tests with negative output dimensions.
Improve reporting on failing to allocate tensor due to above issue.
Fix runner to correctly pass ref model debug flags.
Update reference_model examples.

Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com>
Change-Id: I992180dcfe265a7d50edfb151c9f38eeaef5c369
diff --git a/verif/runner/tosa_refmodel_sut_run.py b/verif/runner/tosa_refmodel_sut_run.py
index 2ae7a69..6acaaf4 100644
--- a/verif/runner/tosa_refmodel_sut_run.py
+++ b/verif/runner/tosa_refmodel_sut_run.py
@@ -40,10 +40,10 @@
 
         # Specific debug options for reference model
         if args.ref_debug:
-            cmd.extend(["-d ALL", "-l {}".format(args.ref_debug)])
+            cmd.extend(["-d", "ALL", "-l", args.ref_debug])
 
         if args.ref_intermediates:
-            cmd.extend(["-D dump_intermediates=1"])
+            cmd.extend(["--dump_intermediates", str(args.ref_intermediates)])
 
         # Run command and interpret tosa graph result via process return codes
         graphMessage = None