COMPMID-1181: Support for tracing configuration

This patch adds support for tracing function and kernel configuration
arguments. The trace is printed to stdout.

To enable tracing run the script: scripts/enable_tracing.py and recompile
the library with tracing=1.

Change-Id: If6626785e263d9023899b20e175a53652d70a605
Signed-off-by: morgolock <pablo.tello@arm.com>
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2712
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Sang-Hoon Park <sang-hoon.park@arm.com>
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index 79ec367..b62bd69 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -59,6 +59,7 @@
         return to_string(*arg);
     }
 }
+
 /** Formatted output of the Dimensions type.
  *
  * @param[out] os         Output stream.
@@ -1091,7 +1092,12 @@
     os << "{is_a_reshaped=" << info.is_a_reshaped() << ",";
     os << "is_b_reshaped=" << info.is_b_reshaped() << ",";
     os << "reshape_b_only_on_first_run=" << info.reshape_b_only_on_first_run() << ",";
-    os << "}";
+    os << "depth_output_gemm3d=" << info.depth_output_gemm3d() << ",";
+    os << "reinterpret_input_as_3d=" << info.reinterpret_input_as_3d() << ",";
+    os << "retain_internal_weights=" << info.retain_internal_weights() << ",";
+    os << "fp_mixed_precision=" << info.fp_mixed_precision() << ",";
+    os << "broadcast_bias=" << info.broadcast_bias() << ",";
+    os << "pretranpose_B=" << info.pretranpose_B() << ",";
 
     return os;
 }