COMPMID-1774: Implement CLGEMMReshapeLHSMatrixKernel to reshape the LHS matrix of GEMM/GEMMLowp

Change-Id: I8c5fd4c8bcdffda1522c83158981ed92baa045f4
Reviewed-on: https://review.mlplatform.org/364
Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
diff --git a/tests/validation/Helpers.cpp b/tests/validation/Helpers.cpp
index eab6d56..11c454e 100644
--- a/tests/validation/Helpers.cpp
+++ b/tests/validation/Helpers.cpp
@@ -207,7 +207,7 @@
     {
         for(int x = 0; x < width; ++x)
         {
-            const float val = in[x + y * width];
+            const T val = in[x + y * width];
 
             out[x * height + y] = val;
         }
@@ -313,10 +313,16 @@
 
 template void get_tile(const SimpleTensor<float> &in, SimpleTensor<float> &roi, const Coordinates &coord);
 template void get_tile(const SimpleTensor<half> &in, SimpleTensor<half> &roi, const Coordinates &coord);
+template void get_tile(const SimpleTensor<int> &in, SimpleTensor<int> &roi, const Coordinates &coord);
+template void get_tile(const SimpleTensor<short> &in, SimpleTensor<short> &roi, const Coordinates &coord);
+template void get_tile(const SimpleTensor<char> &in, SimpleTensor<char> &roi, const Coordinates &coord);
 template void zeros(SimpleTensor<float> &in, const Coordinates &anchor, const TensorShape &shape);
 template void zeros(SimpleTensor<half> &in, const Coordinates &anchor, const TensorShape &shape);
 template void transpose_matrix(const SimpleTensor<float> &in, SimpleTensor<float> &out);
 template void transpose_matrix(const SimpleTensor<half> &in, SimpleTensor<half> &out);
+template void transpose_matrix(const SimpleTensor<int> &in, SimpleTensor<int> &out);
+template void transpose_matrix(const SimpleTensor<short> &in, SimpleTensor<short> &out);
+template void transpose_matrix(const SimpleTensor<char> &in, SimpleTensor<char> &out);
 template void matrix_multiply(const SimpleTensor<float> &a, const SimpleTensor<float> &b, SimpleTensor<float> &out);
 template void matrix_multiply(const SimpleTensor<half> &a, const SimpleTensor<half> &b, SimpleTensor<half> &out);