aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLBitwiseNot.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLBitwiseNot.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLBitwiseNot.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/arm_compute/runtime/CL/functions/CLBitwiseNot.h b/arm_compute/runtime/CL/functions/CLBitwiseNot.h
index 1d8531a176..31f8e86802 100644
--- a/arm_compute/runtime/CL/functions/CLBitwiseNot.h
+++ b/arm_compute/runtime/CL/functions/CLBitwiseNot.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2020 Arm Limited.
+ * Copyright (c) 2016-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -31,7 +31,7 @@ namespace arm_compute
class CLCompileContext;
class ICLTensor;
-/** Basic function to run @ref CLBitwiseNotKernel.
+/** Basic function to perform bitwise NOT by running @ref CLBitwiseKernel.
*
* @note The tensor data type for the inputs must be U8.
* @note The function performs a bitwise NOT operation on input tensor.
@@ -40,6 +40,13 @@ class CLBitwiseNot : public ICLSimpleFunction
{
public:
/** Initialize the function
+ * Valid data layouts:
+ * - All
+ *
+ * Valid data type configurations:
+ * |src |dst |
+ * |:--------------|:--------------|
+ * |U8 |U8 |
*
* @param[in] input Input tensor. Data types supported: U8.
* @param[out] output Output tensor. Data types supported: U8.
@@ -53,5 +60,5 @@ public:
*/
void configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output);
};
-}
+} // namespace arm_compute
#endif /* ARM_COMPUTE_CLBITWISENOT_H */