aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CPP/functions/CPPPermute.h
diff options
context:
space:
mode:
authorSheri Zhang <sheri.zhang@arm.com>2020-03-16 14:20:56 +0000
committerSheri Zhang <sheri.zhang@arm.com>2020-03-16 16:56:04 +0000
commita0352d3fd3f0fd5256efe98bf934228374bcf48d (patch)
tree8a49848b2f4b911d7fbd2e9c338aae7de1e491ff /arm_compute/runtime/CPP/functions/CPPPermute.h
parent05b243aff343fd6761bbadb2fcb4d2d98b0848c9 (diff)
downloadComputeLibrary-a0352d3fd3f0fd5256efe98bf934228374bcf48d.tar.gz
COMPMID-3272: Add support for QASYMM8_SIGNED in CPPPermuteKernel/CPPPermute
Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Change-Id: I3856661076b7e39213988251986299ebaa6d9c68 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2886 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime/CPP/functions/CPPPermute.h')
-rw-r--r--arm_compute/runtime/CPP/functions/CPPPermute.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/runtime/CPP/functions/CPPPermute.h b/arm_compute/runtime/CPP/functions/CPPPermute.h
index 1b604e4b26..5a6d8ea106 100644
--- a/arm_compute/runtime/CPP/functions/CPPPermute.h
+++ b/arm_compute/runtime/CPP/functions/CPPPermute.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 ARM Limited.
+ * Copyright (c) 2017-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -38,14 +38,14 @@ class CPPPermute : public ICPPSimpleFunction
public:
/** Configure the permute CPP kernel
*
- * @param[in] input The input tensor to permute. Data types supported: U8/S8/QASYMM8/U16/S16/F16/U32/S32/F32
+ * @param[in] input The input tensor to permute. Data types supported: All
* @param[out] output The output tensor. Data types supported: Same as @p input
* @param[in] perm Permutation vector
*/
void configure(const ITensor *input, ITensor *output, const PermutationVector &perm);
/** Static function to check if given info will lead to a valid configuration of @ref CPPPermute
*
- * @param[in] input The input tensor to permute. Data types supported: U8/S8/QASYMM8/U16/S16/F16/U32/S32/F32
+ * @param[in] input The input tensor to permute. Data types supported: All
* @param[in] output The output tensor. Data types supported: Same as @p input
* @param[in] perm Permutation vector
*