aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClMatMul.h
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.h
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.h')
-rw-r--r--src/gpu/cl/operators/ClMatMul.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/cl/operators/ClMatMul.h b/src/gpu/cl/operators/ClMatMul.h
index 894b8d5816..20beda91ce 100644
--- a/src/gpu/cl/operators/ClMatMul.h
+++ b/src/gpu/cl/operators/ClMatMul.h
@@ -25,7 +25,7 @@
#define ARM_COMPUTE_SRC_GPU_CL_OPERATORS_ClMatMul
#include "src/gpu/cl/IClOperator.h"
-#include "src/gpu/cl/kernels/ClNativeMatMulKernel.h"
+#include "src/gpu/cl/kernels/ClMatMulNativeKernel.h"
#include <memory>
namespace arm_compute
@@ -34,7 +34,7 @@ namespace opencl
{
/** Basic operator to execute BatchMatMul on OpenCL. This operator calls the following OpenCL kernels:
*
- * -# @ref kernels::ClNativeMatMulKernel
+ * -# @ref kernels::ClMatMulNativeKernel
*/
class ClMatMul : public IClOperator
{
@@ -77,7 +77,7 @@ public:
void run(ITensorPack &tensors) override;
private:
- std::unique_ptr<kernels::ClNativeMatMulKernel> _native_matmul_kernel;
+ std::unique_ptr<kernels::ClMatMulNativeKernel> _native_matmul_kernel;
};
} // namespace opencl
} // namespace arm_compute