aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/ClKernelLibrary.cpp
diff options
context:
space:
mode:
authorGunes Bayir <gunes.bayir@arm.com>2023-06-19 21:33:51 +0100
committerGunes Bayir <gunes.bayir@arm.com>2023-06-29 13:23:45 +0000
commit00474e99260da69c5abd14277d0dd0b6de209904 (patch)
tree28238ebbf4721d7aca6fbf6a23658fbe056da055 /src/gpu/cl/ClKernelLibrary.cpp
parent7a698a38c625047bd558027d4cbc493f063739f5 (diff)
downloadComputeLibrary-00474e99260da69c5abd14277d0dd0b6de209904.tar.gz
Implement FP32/16 MatMul Lhs T Rhs T/NT kernel using MMUL extension
Resolves: COMPMID-6196, COMPMID-6197 Change-Id: I22a1c32686eb70e7676c8b4d64a76dbaeb638cb3 Signed-off-by: Gunes Bayir <gunes.bayir@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9798 Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/gpu/cl/ClKernelLibrary.cpp')
-rw-r--r--src/gpu/cl/ClKernelLibrary.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gpu/cl/ClKernelLibrary.cpp b/src/gpu/cl/ClKernelLibrary.cpp
index 5355cb7402..de2e9f9742 100644
--- a/src/gpu/cl/ClKernelLibrary.cpp
+++ b/src/gpu/cl/ClKernelLibrary.cpp
@@ -320,7 +320,9 @@ const std::map<std::string, std::string> ClKernelLibrary::_kernel_program_map =
{ "l2_normalize_y", "common/l2_normalize.cl" },
{ "l2_normalize_z", "common/l2_normalize.cl" },
{ "mat_mul_native_mmul_nt_nt", "common/mat_mul_mmul.cl" },
+ { "mat_mul_native_mmul_t_nt", "common/mat_mul_mmul.cl" },
{ "mat_mul_native_mmul_nt_t", "common/mat_mul_mmul.cl" },
+ { "mat_mul_native_mmul_t_t", "common/mat_mul_mmul.cl" },
{ "mat_mul_native_nt_nt", "common/mat_mul.cl" },
{ "mat_mul_native_nt_t", "common/mat_mul.cl" },
{ "mat_mul_native_t_nt", "common/mat_mul.cl" },