aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2017-08-02 13:19:48 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitcb29283e0d65297f4756e202df07eac1107841e6 (patch)
tree22592fe8e4132110fd5f9f0df53afb3dc0ba26c9 /arm_compute/core/CL
parent484e7b3724c0e77751b5bed05180271fd5376e5d (diff)
downloadComputeLibrary-cb29283e0d65297f4756e202df07eac1107841e6.tar.gz
COMPMID-477 - Optimizing Pooling 3x3 with stride_x <= 3 on OpenCL
Change-Id: Ie000166307cdb5bfae00ebf84d35e49a6bfb9dbd Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83372 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/core/CL')
-rw-r--r--arm_compute/core/CL/kernels/CLPoolingLayerKernel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h b/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h
index 6c5091ff9e..971e1506af 100644
--- a/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h
+++ b/arm_compute/core/CL/kernels/CLPoolingLayerKernel.h
@@ -49,7 +49,7 @@ public:
/** Set the input and output tensors.
*
- * @param[in] input Source tensor. Data types supported: F16, F32.
+ * @param[in] input Source tensor. Data types supported: 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
@@ -65,6 +65,7 @@ private:
ICLTensor *_output;
PoolingLayerInfo _pool_info;
BorderSize _border_size;
+ unsigned int _num_elems_processed_per_iteration;
};
}
#endif /*__ARM_COMPUTE_CLPOOLINGLAYERKERNEL_H__ */