aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2017-09-05 13:51:21 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitbf17955e2bf36c635acbac7c3bb03fbbd7732671 (patch)
tree9032d87a13942d4b7a15b2db5e7570d79823c66f /arm_compute/core/CL
parent583137cc60580023abfd9d05abf933e7e117e29f (diff)
downloadComputeLibrary-bf17955e2bf36c635acbac7c3bb03fbbd7732671.tar.gz
COMPMID-522 - Added support for GlobalPooling in CLPoolingLayer and CLFlattening for 3D tensor
Change-Id: Ifc7db1e4d4af322a4dcbfeb3e132e5c326596872 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86618 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute/core/CL')
-rw-r--r--arm_compute/core/CL/kernels/CLPoolingLayerKernel.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h b/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h
index 971e1506af..9251a8ed98 100644
--- a/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h
+++ b/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h
@@ -49,10 +49,11 @@ public:
/** Set the input and output tensors.
*
- * @param[in] input Source tensor. Data types supported: F16/F32.
+ * @note QS8 and QS16 are supported only for pool sizes 3, 5 and 7
+ *
+ * @param[in] input Source tensor. Data types supported: QS8/QS16/F16/F32.
* @param[out] output Destination tensor. Data types supported: Same as @p input.
* @param[in] pool_info Contains pooling operation information described in @ref PoolingLayerInfo.
- * Supported pooling sizes : 2, 3 and 7
*/
void configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info);
@@ -67,5 +68,5 @@ private:
BorderSize _border_size;
unsigned int _num_elems_processed_per_iteration;
};
-}
+} // namespace arm_compute
#endif /*__ARM_COMPUTE_CLPOOLINGLAYERKERNEL_H__ */