From 5e99a3e4d65f814c5e6938c31a0ef505d0fb8f17 Mon Sep 17 00:00:00 2001 From: Jakub Sujak Date: Tue, 18 Apr 2023 08:33:56 +0100 Subject: Add quantized CL MatMul kernel for LHS NT, RHS T Implement a native kernel for batched Matrix Multiplication for the quantized data types QASYMM8 and QASYMM8_SIGNED and with the MatMul attributes `adj_x = false, adj_y = true`. Resolves: COMPMID-5923 Change-Id: I477b2dd886edfe83beaba9efc7d6b05ed19f5da4 Signed-off-by: Jakub Sujak Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9467 Tested-by: Arm Jenkins Reviewed-by: SiCong Li Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins --- src/gpu/cl/ClKernelLibrary.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/gpu') diff --git a/src/gpu/cl/ClKernelLibrary.cpp b/src/gpu/cl/ClKernelLibrary.cpp index 4612ca35b8..a9080049b5 100644 --- a/src/gpu/cl/ClKernelLibrary.cpp +++ b/src/gpu/cl/ClKernelLibrary.cpp @@ -324,6 +324,7 @@ const std::map ClKernelLibrary::_kernel_program_map = { "mat_mul_native_t_nt", "common/mat_mul.cl" }, { "mat_mul_native_t_t", "common/mat_mul.cl" }, { "mat_mul_native_quantized_nt_nt", "common/mat_mul_quantized.cl" }, + { "mat_mul_native_quantized_nt_t", "common/mat_mul_quantized.cl" }, { "mat_mul_native_quantized_t_nt", "common/mat_mul_quantized.cl" }, { "mat_mul_native_quantized_t_t", "common/mat_mul_quantized.cl" }, { "max_unpooling_layer_2", "common/unpooling_layer.cl" }, -- cgit v1.2.1