From 2dbc586417d5a36fcc0aca97267388466f7fff6e Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Wed, 18 Nov 2020 13:52:11 +0000 Subject: COMPMID-3961: Cleaning up logical operators on OpenCL Change-Id: I04cd23e9abcb1828e54cd59fee3bfa95a6dea3fb Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4461 Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: Manuel Bottini --- arm_compute/runtime/CL/functions/CLLogicalNot.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'arm_compute/runtime/CL/functions/CLLogicalNot.h') diff --git a/arm_compute/runtime/CL/functions/CLLogicalNot.h b/arm_compute/runtime/CL/functions/CLLogicalNot.h index 4fdf39ed70..f1f2ac1162 100644 --- a/arm_compute/runtime/CL/functions/CLLogicalNot.h +++ b/arm_compute/runtime/CL/functions/CLLogicalNot.h @@ -45,13 +45,13 @@ public: * * @param[in] compile_context The compile context to be used. * @param[in, out] input Tensor input. Data types supported: U8. - * @param[out] output Output tensor. Data types supported: U8. + * @param[out] output Output tensor. Data types supported: same as @p input. */ void configure(const CLCompileContext &compile_context, const ITensorInfo *input, ITensorInfo *output); /** Static function to check if given info will lead to a valid configuration of @ref CLElementWiseUnaryLayerKernel * * @param[in] input Tensor input info. Data types supported: U8. - * @param[in] output Output tensor info. Data types supported: U8. + * @param[in] output Output tensor info. Data types supported: same as @p input. * * @return a status */ @@ -84,20 +84,20 @@ public: /** Initialize the function * * @param[in] input Input tensor. Data types supported: U8. - * @param[out] output Output tensor. Data types supported: U8. + * @param[out] output Output tensor. Data types supported: same as @p input. */ void configure(const ICLTensor *input, ICLTensor *output); /** Initialize the function * * @param[in] compile_context The compile context to be used. * @param[in] input Input tensor. Data types supported: U8. - * @param[out] output Output tensor. Data types supported: U8. + * @param[out] output Output tensor. Data types supported: same as @p input. */ void configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output); /** Static function to check if given info will lead to a valid configuration * * @param[in] input Tensor input info. Data types supported: U8. - * @param[in] output Output tensor info. Data types supported: U8. + * @param[in] output Output tensor info. Data types supported: same as @p input. * * @return a status */ -- cgit v1.2.1