From 0cc50ed757f06f4f076e261cb7253dd67264dec6 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 6 Jul 2020 19:10:38 +0100 Subject: COMPMID-3324: Remove pretransposed support from NEON backend Signed-off-by: Georgios Pinitas Change-Id: I394c6c539969940e0119cbc14174909d47e65de6 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3519 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/core/NEON/kernels/arm_gemm/std_transforms_fixed.hpp | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'src/core/NEON/kernels/arm_gemm/std_transforms_fixed.hpp') diff --git a/src/core/NEON/kernels/arm_gemm/std_transforms_fixed.hpp b/src/core/NEON/kernels/arm_gemm/std_transforms_fixed.hpp index 4b838c82a1..ab2a2f3382 100644 --- a/src/core/NEON/kernels/arm_gemm/std_transforms_fixed.hpp +++ b/src/core/NEON/kernels/arm_gemm/std_transforms_fixed.hpp @@ -45,22 +45,14 @@ class StdTransformsFixed public: template void PrepareA(TOperand *out, const TIn *in, const int stride, const int y0, - const int ymax, const int k0, const int kmax, bool transposed) const { - if (transposed) { - Transform(out, in, stride, y0, ymax, k0, kmax); - } else { - Transform(out, in, stride, y0, ymax, k0, kmax); - } + const int ymax, const int k0, const int kmax) const { + Transform(out, in, stride, y0, ymax, k0, kmax); } template void PrepareB(TOperand *out, const TIn *in, const int stride, const int x0, - const int xmax, const int k0, const int kmax, bool transposed) const { - if (transposed) { - Transform(out, in, stride, x0, xmax, k0, kmax); - } else { - Transform(out, in, stride, x0, xmax, k0, kmax); - } + const int xmax, const int k0, const int kmax) const { + Transform(out, in, stride, x0, xmax, k0, kmax); } template -- cgit v1.2.1