aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-11-14 08:10:13 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-14 11:46:25 +0000
commit5538d3436d6415d428b37d0f34ec81ca48cdff1a (patch)
treeef72436e71db408b940abdc776b86b4654aa03c2 /arm_compute/core/CL
parent27400b90a9cb3fe028c5b724b58ce0e82d89b5e8 (diff)
downloadComputeLibrary-5538d3436d6415d428b37d0f34ec81ca48cdff1a.tar.gz
COMPMID-1781 Add channel support in CLL2Normalization
Change-Id: Ibab049f09413258c99335b7da6b151530a1bd136
Diffstat (limited to 'arm_compute/core/CL')
-rw-r--r--arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h b/arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h
index ae05bcf879..8dd4609250 100644
--- a/arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h
+++ b/arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h
@@ -50,24 +50,24 @@ public:
/** Set the input and output tensors.
*
- * @param[in] input Source tensor. Data types supported: F32. Data layouts supported: NCHW/NHWC.
+ * @param[in] input Source tensor. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC.
* @param[in] sum Sum values tensor. Data types supported: same as @p input.
* Sum will have the same number of dimensions as input.
* @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input.
* Output will have the same number of dimensions as input.
- * @param[in] axis Axis along which to reduce. Supported reduction axis : 0
+ * @param[in] axis Axis along which to reduce. Supported reduction axis : 0, 1, 2
* @param[in] epsilon Lower bound value for the normalization.
*/
void configure(const ICLTensor *input, const ICLTensor *sum, ICLTensor *output, unsigned int axis, float epsilon);
/** Static function to check if given info will lead to a valid configuration of @ref CLL2NormalizeLayerKernel.
*
- * @param[in] input Source tensor info. Data types supported: F32. Data layouts supported: NCHW/NHWC.
+ * @param[in] input Source tensor info. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC.
* @param[in] sum Sum values tensor info. Data types supported: same as @p input.
* Sum will have the same number of dimensions as input.
* @param[in] output Destination tensor info. Data types and data layouts supported: Same as @p input.
* Output will have the same number of dimensions as input.
- * @param[in] axis Axis along which to reduce. Supported reduction axis : 0
+ * @param[in] axis Axis along which to reduce. Supported reduction axis : 0, 1, 2
* @param[in] epsilon Lower bound value for the normalization.
*
* @return a status