From fef6dae9c2cfe1003ab2abe3a41255e849b1b5eb Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Fri, 15 Dec 2017 10:36:21 +0000 Subject: COMPMID-750: Enabled support for U8 and S8 datatypes in NEGEMMLowpAArch64V8P4Kernel Change-Id: If32cbdc65f2e1441595cae5b4824a9b4357c8bf6 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/113467 Tested-by: Jenkins Reviewed-by: Anthony Barbier Reviewed-by: Georgios Pinitas --- src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/runtime/NEON') diff --git a/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp b/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp index 6e03ffa1bc..9b36e81afd 100644 --- a/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp +++ b/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp @@ -74,7 +74,7 @@ void NEGEMMLowpAssemblyMatrixMultiplyCore::configure(const ITensor *a, const ITe #endif /* __aarch64__ */ #ifdef ARM_COMPUTE_AARCH64_V8_2 - if(ci.CPU == CPUTarget::A75_DOT) + if(ci.CPU == CPUTarget::A75_DOT || ci.CPU == CPUTarget::A55_DOT) { // Configure matrix multiply kernel GemmInterleaved gemm(&ci, M, N, K, false, false); @@ -87,10 +87,6 @@ void NEGEMMLowpAssemblyMatrixMultiplyCore::configure(const ITensor *a, const ITe _mm_kernel = std::move(k); _workspace.allocator()->allocate(); } - else if(ci.CPU == CPUTarget::A55_DOT) - { - ARM_COMPUTE_ERROR_ON("WIP"); - } else #elif defined(ARM_COMPUTE_AARCH64_V8A) if(ci.CPU == CPUTarget::A53) -- cgit v1.2.1