blob: 26858d5cdec9204c0db4af29f85039d8a74ddc9b [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas55186712018-01-08 17:37:12 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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_NEPOOLINGLAYER_H__
25#define __ARM_COMPUTE_NEPOOLINGLAYER_H__
26
Gian Marco Iodice16824302017-09-28 15:41:37 +010027#include "arm_compute/runtime/IFunction.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028
Gian Marco Iodice16824302017-09-28 15:41:37 +010029#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
30#include "arm_compute/core/NEON/kernels/NEPoolingLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/Types.h"
32
33namespace arm_compute
34{
35class ITensor;
36
37/** Basic function to simulate a pooling layer with the specified pooling operation. This function calls the following NEON kernels:
38 *
39 * -# @ref NEFillBorderKernel (executed if padding size is different from zero)
40 * -# @ref NEPoolingLayerKernel
41 */
Gian Marco Iodice16824302017-09-28 15:41:37 +010042class NEPoolingLayer : public IFunction
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043{
44public:
Gian Marco Iodice16824302017-09-28 15:41:37 +010045 /** Constructor */
46 NEPoolingLayer();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047 /** Set the input and output tensors.
48 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010049 * @note F16 is supported for pool sizes 2 and 3 only
Gian Marco Iodice16824302017-09-28 15:41:37 +010050 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010051 * @param[in, out] input Source tensor. (Written to only when padding != 0) Data types supported: QASYMM8/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(ITensor *input, ITensor *output, const PoolingLayerInfo &pool_info);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000056 /** Static function to check if given info will lead to a valid configuration of @ref NEPoolingLayer
57 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010058 * @note F16 is supported for pool sizes 2 and 3 only
Michalis Spyrouafa5d812017-11-30 14:25:57 +000059 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010060 * @param[in] input Source tensor. (Written to only when padding != 0) Data types supported: QASYMM8/F16/F32.
Michalis Spyrouafa5d812017-11-30 14:25:57 +000061 * @param[in] output Destination tensor. Data types supported: Same as @p input.
62 * @param[in] pool_info Contains pooling operation information described in @ref PoolingLayerInfo.
63 *
64 * @return a status
65 */
66 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info);
Gian Marco Iodice16824302017-09-28 15:41:37 +010067
68 // Inherited methods overridden:
69 void run() override;
70
71private:
72 NEPoolingLayerKernel _pooling_layer_kernel;
73 NEFillBorderKernel _border_handler;
74 bool _is_global_pooling_layer;
Michalis Spyrou57dac842018-03-01 16:03:50 +000075 DataLayout _data_layout;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076};
77}
78#endif /* __ARM_COMPUTE_NEPOOLINGLAYER_H__ */