aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON
diff options
context:
space:
mode:
authorSheri Zhang <sheri.zhang@arm.com>2020-07-14 15:29:28 +0100
committerSheri Zhang <sheri.zhang@arm.com>2020-07-17 11:16:17 +0000
commite068199254e525176b2c1eaf8420b9ddac3d9011 (patch)
tree1ef6ab5dcb4311c4c599bd93b2788b9a4c6d271f /arm_compute/runtime/NEON
parenta084b46835d20fdfe6e590b91b7ca64fba3542df (diff)
downloadComputeLibrary-e068199254e525176b2c1eaf8420b9ddac3d9011.tar.gz
COMPMID-3576: Nightly failure: NEON/PoolingLayer/Float/FP16/MaxUnpooling S10
Extend NEPoolingLayer max pooling to extract indices for FP16 Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Change-Id: I5a7c754be353e4c2c5d0ab3794e9427408d0c4fa Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3580 Reviewed-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON')
-rw-r--r--arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h b/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
index 468bc70466..f13b4bd9e2 100644
--- a/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
@@ -45,7 +45,7 @@ public:
NEMaxUnpoolingLayer();
/** Set the input and output tensors.
*
- * @note F16 is supported for pool sizes 2 and 3 only
+ * @note Only supported pool size 2
*
* @param[in, out] input Source tensor. (Written to only when padding != 0) Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
* @param[out] output Destination tensor. Data types supported: Same as @p input.
@@ -55,7 +55,7 @@ public:
void configure(ITensor *input, ITensor *indices, ITensor *output, const PoolingLayerInfo &pool_info);
/** Static function to check if given info will lead to a valid configuration of @ref NEMaxUnpoolingLayer
*
- * @note F16 is supported for pool sizes 2 and 3 only
+ * @note Only supported pool size 2
*
* @param[in] input Source tensor. (Written to only when padding != 0) Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
* @param[in] indices The indices of the maximal values. Data type supported: U32.