blob: a5de81137befe3623507db679940d0b43e6fc20a [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_NEPOOLINGLAYERKERNEL_H__
25#define __ARM_COMPUTE_NEPOOLINGLAYERKERNEL_H__
26
27#include "arm_compute/core/NEON/INEKernel.h"
28
29namespace arm_compute
30{
31class ITensor;
32
33/** Interface for the pooling layer kernel */
34class NEPoolingLayerKernel : public INEKernel
35{
36public:
37 /** Default constructor */
38 NEPoolingLayerKernel();
39 /** Prevent instances of this class from being copied (As this class contains pointers) */
40 NEPoolingLayerKernel(const NEPoolingLayerKernel &) = delete;
41 /** Prevent instances of this class from being copied (As this class contains pointers) */
42 NEPoolingLayerKernel &operator=(const NEPoolingLayerKernel &) = delete;
43 /** Allow instances of this class to be moved */
44 NEPoolingLayerKernel(NEPoolingLayerKernel &&) = default;
45 /** Allow instances of this class to be moved */
46 NEPoolingLayerKernel &operator=(NEPoolingLayerKernel &&) = default;
47 /** Default destructor */
48 ~NEPoolingLayerKernel() = default;
49 /** Set the input and output tensors.
50 *
Pablo Tello0c34fe22017-06-26 17:17:42 +010051 * @param[in] input Source tensor. Data types supported: QS8/F16/F32.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 * @param[out] output Destination tensor. Data types supported: Same as @p input.
53 * @param[in] pool_info Contains pooling operation information described in @ref PoolingLayerInfo.
54 */
55 void configure(const ITensor *input, ITensor *output, const PoolingLayerInfo &pool_info);
56
57 // Inherited methods overridden:
58 void run(const Window &window) override;
59 BorderSize border_size() const override;
60
61private:
62 /** Function to perform 2x2 pooling.
63 *
64 * @param[in] window_input Input region on which to execute the kernel.
65 * @param[in] window Output region on which to execute the kernel.
66 */
67 template <PoolingType pooling_type>
68 void pooling2_f32(const Window &window_input, const Window &window);
Pablo Tello0c34fe22017-06-26 17:17:42 +010069 /** Function to perform 2x2 pooling for float16_t.
70 *
71 * @param[in] window_input Input region on which to execute the kernel.
72 * @param[in] window Output region on which to execute the kernel.
73 */
74 template <PoolingType pooling_type>
75 void pooling2_f16(const Window &window_input, const Window &window);
76
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077 /** Function to perform 2x2 pooling for 8bit fixed point.
78 *
79 * @param[in] window_input Input region on which to execute the kernel.
80 * @param[in] window Output region on which to execute the kernel.
81 */
82 template <PoolingType pooling_type>
83 void pooling2_q8(const Window &window_input, const Window &window);
84 /** Function to perform 3x3 pooling.
85 *
86 * @param[in] window_input Input region on which to execute the kernel.
87 * @param[in] window Output region on which to execute the kernel.
88 */
89 template <PoolingType pooling_type>
90 void pooling3_f32(const Window &window_input, const Window &window);
Pablo Tello0c34fe22017-06-26 17:17:42 +010091 /** Function to perform 3x3 pooling.
92 *
93 * @param[in] window_input Input region on which to execute the kernel.
94 * @param[in] window Output region on which to execute the kernel.
95 */
96 template <PoolingType pooling_type>
97 void pooling3_f16(const Window &window_input, const Window &window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098 /** Function to perform 3x3 pooling for 8bit fixed point.
99 *
100 * @param[in] window_input Input region on which to execute the kernel.
101 * @param[in] window Output region on which to execute the kernel.
102 */
103 template <PoolingType pooling_type>
104 void pooling3_q8(const Window &window_input, const Window &window);
Michele Di Giorgio8af2dd62017-06-19 15:19:29 +0100105 /** Function to perform 7x7 pooling.
106 *
107 * @param[in] window_input Input region on which to execute the kernel.
108 * @param[in] window Output region on which to execute the kernel.
109 */
110 template <PoolingType pooling_type>
111 void pooling7_f32(const Window &window_input, const Window &window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 /** Common signature for all the specialised Pooling functions
113 *
114 * @param[in] window_input Input region on which to execute the kernel.
115 * @param[in] window Output region on which to execute the kernel.
116 */
117 using PoolingFunction = void (NEPoolingLayerKernel::*)(const Window &window_input, const Window &window);
118
119private:
120 PoolingFunction _func;
121 const ITensor *_input;
122 ITensor *_output;
123 PoolingLayerInfo _pool_info;
124 int _num_elems_processed_per_iteration;
125 BorderSize _border_size;
126};
127}
128#endif /*__ARM_COMPUTE_NEPOOLINGLAYERKERNEL_H__ */