aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2018-11-15 15:21:17 +0000
committerGian Marco Iodice <gianmarco.iodice@arm.com>2018-11-15 16:13:58 +0000
commite059f4f1bf6160d3819342124533d17cc32b9799 (patch)
tree035bc9b791b710771b3149d97ce5e3de8f0f9e57 /src/runtime/CL
parent47e6fede687a301137cef25ff729e68d099d4520 (diff)
downloadComputeLibrary-e059f4f1bf6160d3819342124533d17cc32b9799.tar.gz
COMPMID-1787: Change the heuristic selection in CLGEMMLowpMatrixMultiplyCore
Change-Id: Ia8d4e46ce5d9bb366af15726bc208dc14583c6ae
Diffstat (limited to 'src/runtime/CL')
-rw-r--r--src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp b/src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp
index f2efb3249b..2d4d231f5f 100644
--- a/src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp
+++ b/src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp
@@ -43,8 +43,7 @@ inline bool is_interleaved_transposed(int m, int n, int k, bool reshape_b_only_o
if(gpu_target_is_in(gpu_target,
GPUTarget::G71, GPUTarget::G72,
- GPUTarget::G51, GPUTarget::G51BIG, GPUTarget::G51LIT,
- GPUTarget::G52, GPUTarget::G52LIT))
+ GPUTarget::G51, GPUTarget::G51BIG, GPUTarget::G51LIT))
{
// COMPMID-852
if(k > 256 && m > 4 && reshape_b_only_on_first_run)