aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2017-09-28 15:41:37 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit1682430e220eb609752c650f85c0f96e375b6d6a (patch)
tree88db2cf1ad95df696c4477f06b30bac62fccf111 /arm_compute
parente1f8f9b976cec4af84e5beee1109912f36096f5c (diff)
downloadComputeLibrary-1682430e220eb609752c650f85c0f96e375b6d6a.tar.gz
COMPMID-463 - Extended Pooling Layer on NEON to support Global Pooling
Change-Id: I8ae44187624deeab3d40d878e7b34ff651f1dad0 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/89834 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h9
-rw-r--r--arm_compute/runtime/NEON/functions/NEPoolingLayer.h18
2 files changed, 25 insertions, 2 deletions
diff --git a/arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h b/arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h
index 2a0ecf8ba7..9d7c75179a 100644
--- a/arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h
+++ b/arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h
@@ -48,6 +48,8 @@ public:
~NEPoolingLayerKernel() = default;
/** Set the input and output tensors.
*
+ * @note QS8, QS16 and F16 are supported for pool sizes 2 and 3 only
+ *
* @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.
@@ -123,6 +125,13 @@ private:
*/
template <PoolingType pooling_type>
void pooling7_f32(const Window &window_input, const Window &window);
+ /** Function to perform NxN pooling.
+ *
+ * @param[in] window_input Input region on which to execute the kernel.
+ * @param[in] window Output region on which to execute the kernel.
+ */
+ template <PoolingType pooling_type>
+ void poolingN_f32(const Window &window_input, const Window &window);
/** Common signature for all the specialised Pooling functions
*
* @param[in] window_input Input region on which to execute the kernel.
diff --git a/arm_compute/runtime/NEON/functions/NEPoolingLayer.h b/arm_compute/runtime/NEON/functions/NEPoolingLayer.h
index 5c36e80f37..7b038aaa51 100644
--- a/arm_compute/runtime/NEON/functions/NEPoolingLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEPoolingLayer.h
@@ -24,8 +24,10 @@
#ifndef __ARM_COMPUTE_NEPOOLINGLAYER_H__
#define __ARM_COMPUTE_NEPOOLINGLAYER_H__
-#include "arm_compute/runtime/NEON/INESimpleFunction.h"
+#include "arm_compute/runtime/IFunction.h"
+#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
+#include "arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h"
#include "arm_compute/core/Types.h"
namespace arm_compute
@@ -37,16 +39,28 @@ class ITensor;
* -# @ref NEFillBorderKernel (executed if padding size is different from zero)
* -# @ref NEPoolingLayerKernel
*/
-class NEPoolingLayer : public INESimpleFunction
+class NEPoolingLayer : public IFunction
{
public:
+ /** Constructor */
+ NEPoolingLayer();
/** Set the input and output tensors.
*
+ * @note QS8, QS16 and F16 are supported for pool sizes 2 and 3 only
+ *
* @param[in, out] input Source tensor. (Written to only when padding != 0) 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.
*/
void configure(ITensor *input, ITensor *output, const PoolingLayerInfo &pool_info);
+
+ // Inherited methods overridden:
+ void run() override;
+
+private:
+ NEPoolingLayerKernel _pooling_layer_kernel;
+ NEFillBorderKernel _border_handler;
+ bool _is_global_pooling_layer;
};
}
#endif /* __ARM_COMPUTE_NEPOOLINGLAYER_H__ */