Optimize Transposed Convolution for CL backend (FP32/16)

This patch optimizes transposed convolution for CL backend by rewriting it in a single kernel instead of three (flip_kernel + upsample + conv). The new kernel skips the upsampling step which reduces the input space of convolution by stride_x * stride_y, resulting in significant performance improvement. It also skips the kernel flipping by traversing the weights accordingly, thus reduces the memory footprint.

Resolves: COMPMID-5676
Signed-off-by: Gunes Bayir <gunes.bayir@arm.com>
Change-Id: I8a333212dc7c5f7f0597aa58b0d56d44814baa14
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8588
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Benchmark: Arm Jenkins <bsgcomp@arm.com>
diff --git a/filelist.json b/filelist.json
index a99dced..21bc35c 100644
--- a/filelist.json
+++ b/filelist.json
@@ -337,6 +337,8 @@
         "common": [
           "src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
           "src/core/CL/kernels/CLDeconvolutionReshapeOutputKernel.cpp",
+          "src/gpu/cl/kernels/ClTransposedConvolutionKernel.cpp",
+          "src/gpu/cl/operators/ClTransposedConvolution.cpp",
           "src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
           "src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
           "src/runtime/CL/functions/CLDirectDeconvolutionLayer.cpp",