aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLPermute.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLPermute.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLPermute.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/arm_compute/runtime/CL/functions/CLPermute.h b/arm_compute/runtime/CL/functions/CLPermute.h
index bcd9566fbf..7ac0bf6b9c 100644
--- a/arm_compute/runtime/CL/functions/CLPermute.h
+++ b/arm_compute/runtime/CL/functions/CLPermute.h
@@ -46,13 +46,22 @@ public:
/** Prevent instances of this class from being copied (As this class contains pointers) */
CLPermute(const CLPermute &) = delete;
/** Default move constructor */
- CLPermute(CLPermute &&);
+ CLPermute(CLPermute &&) = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
CLPermute &operator=(const CLPermute &) = delete;
/** Default move assignment operator */
- CLPermute &operator=(CLPermute &&);
+ CLPermute &operator=(CLPermute &&) = default;
/** Set the input and output tensors.
*
+ * Valid data layouts:
+ * - NHWC
+ * - NCHW
+ *
+ * Valid data type configurations:
+ * |src |dst |
+ * |:--------------|:--------------|
+ * |All |All |
+ *
* @note Arbitrary permutation vectors are supported with rank not greater than 4
*
* @param[in] input The input tensor to permute. Data types supported: All.
@@ -69,7 +78,10 @@ public:
* @param[in] output The output tensor. Data types supported: Same as @p input
* @param[in] perm Permutation vector
*/
- void configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const PermutationVector &perm);
+ void configure(const CLCompileContext &compile_context,
+ const ICLTensor *input,
+ ICLTensor *output,
+ const PermutationVector &perm);
/** Static function to check if given info will lead to a valid configuration of @ref CLPermute.
*
* @note Arbitrary permutation vectors are supported with rank not greater than 4