From 66c656a1d10831d8311f7797b285faa2c30bcb3f Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Thu, 15 Mar 2018 10:34:58 +0000 Subject: COMPMID-881: Addded missing DataType::QASYMM8 in GEMMLowp function. Change-Id: Id5ded4244f8a2983551308d7d3e7a07d266581ac Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124680 Reviewed-by: Georgios Pinitas Tested-by: Jenkins --- src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp') diff --git a/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp b/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp index e5e97910d8..a02872c3d5 100644 --- a/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp +++ b/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp @@ -61,6 +61,7 @@ void NEGEMMLowpAssemblyMatrixMultiplyCore::configure(const ITensor *a, const ITe run_optimised = setup_assembly_kernel(a, b, nullptr, output, 1.f, 1.f, _workspace, _memory_group, _asm_glue_signed); break; } + case DataType::QASYMM8: case DataType::U8: { run_optimised = setup_assembly_kernel(a, b, nullptr, output, 1.f, 1.f, _workspace, _memory_group, _asm_glue_unsigned); -- cgit v1.2.1