aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClMatMul.cpp
diff options
context:
space:
mode:
authorJakub Sujak <jakub.sujak@arm.com>2023-04-13 21:14:42 +0100
committerJakub Sujak <jakub.sujak@arm.com>2023-04-14 10:36:42 +0000
commit1ed6a144b1396297b813457016d545af1bb9d823 (patch)
treecb3516b7103c22d76ea03021355bdf293fa32061 /src/gpu/cl/operators/ClMatMul.cpp
parent9b0a6b49e95b221456489dd7c58681ceca5dd8cb (diff)
downloadComputeLibrary-1ed6a144b1396297b813457016d545af1bb9d823.tar.gz
Align naming convention of ClMatMul
Ensure naming of MatMul on GPU conforms to the naming convention <backend><operator><config> i.e. ClMatMul operator with the backend ClMatMulNativeKernel. Resolves: COMPMID-6015 Change-Id: I021d235b023ad17fe97bd6913e6a50d0ba4b194e Signed-off-by: Jakub Sujak <jakub.sujak@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9443 Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/gpu/cl/operators/ClMatMul.cpp')
-rw-r--r--src/gpu/cl/operators/ClMatMul.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/cl/operators/ClMatMul.cpp b/src/gpu/cl/operators/ClMatMul.cpp
index dadaa1f779..3ad6d914c7 100644
--- a/src/gpu/cl/operators/ClMatMul.cpp
+++ b/src/gpu/cl/operators/ClMatMul.cpp
@@ -25,7 +25,7 @@
#include "arm_compute/core/Error.h"
#include "arm_compute/runtime/CL/CLScheduler.h"
#include "src/common/utils/Log.h"
-#include "src/gpu/cl/kernels/ClNativeMatMulKernel.h"
+#include "src/gpu/cl/kernels/ClMatMulNativeKernel.h"
namespace arm_compute
{
@@ -33,7 +33,7 @@ namespace opencl
{
using namespace arm_compute::opencl::kernels;
ClMatMul::ClMatMul()
- : _native_matmul_kernel(std::make_unique<ClNativeMatMulKernel>())
+ : _native_matmul_kernel(std::make_unique<ClMatMulNativeKernel>())
{
}
ClMatMul::~ClMatMul()
@@ -44,7 +44,7 @@ Status ClMatMul::validate(const ITensorInfo *lhs, const ITensorInfo *rhs, const
MatMulKernelInfo kernel_info;
kernel_info.adj_lhs = matmul_info.adj_lhs();
kernel_info.adj_rhs = matmul_info.adj_rhs();
- return ClNativeMatMulKernel::validate(lhs, rhs, output, kernel_info);
+ return ClMatMulNativeKernel::validate(lhs, rhs, output, kernel_info);
}
void ClMatMul::configure(const CLCompileContext &compile_context, ITensorInfo *lhs, ITensorInfo *rhs, ITensorInfo *output, const MatMulInfo &matmul_info)
{