aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2021-02-01 17:09:32 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-02-03 18:40:52 +0000
commite1314665fcfd2a32d6117a8fc16f67a83db3bb05 (patch)
tree63c72e418093bbd57a7e07e8791a9af4faa8ca8b /src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h
parentbe9f9f9139b759d314f4f2a6d2ee747079666504 (diff)
downloadComputeLibrary-e1314665fcfd2a32d6117a8fc16f67a83db3bb05.tar.gz
Make CL Pooling kernels and functions state-less
Resolves COMPMID-4000 Change-Id: I64878f93c033b4928fdefbb964c37c67fdecfaab Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4971 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h')
-rw-r--r--src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h b/src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h
index 86267ec0f7..cc96cf1a1f 100644
--- a/src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h
+++ b/src/core/CL/kernels/CLMaxUnpoolingLayerKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020 Arm Limited.
+ * Copyright (c) 2020-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -53,7 +53,7 @@ public:
* @param[in] compile_context The compile context to be used.
* @param[in] input Source tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
* @param[in] indices Tensor containing the offset to store the input elements in the output tensor.
- * @ref CLPoolingLayerKernel with indices should precede this function in order to
+ * @ref opencl::ClPooling with indices should precede this function in order to
* properly reconstruct the output tensor.
* The tensor shape of this tensor has to be equal to the input tensor shape. Data type supported: U32.
* @param[out] output Destination tensor. Data types supported: Same as @p input.
@@ -65,7 +65,7 @@ public:
* @param[in] input Source tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
* @param[in] output Destination tensor info. Data types supported: Same as @p input.
* @param[in] indices TensorInfo associated to the tensor containing the offset to store the input elements in the output tensor.
- * @ref CLPoolingLayerKernel with indices should precede this function in order to
+ * @ref opencl::ClPooling with indices should precede this function in order to
* properly reconstruct the output tensor.
* The tensor shape of this tensor has to be equal to the input tensor shape. Data type supported: U32.
* @param[in] pool_info Contains pooling operation information described in @ref PoolingLayerInfo.