blob: bc0b6f86d36023efe308a67c2b7ba8461c0f257a [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#include "arm_compute/runtime/NEON/functions/NEPoolingLayer.h"
25
Gian Marco Iodice16824302017-09-28 15:41:37 +010026#include "arm_compute/core/ITensor.h"
27#include "arm_compute/runtime/NEON/NEScheduler.h"
28
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010029#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31using namespace arm_compute;
32
Gian Marco Iodice16824302017-09-28 15:41:37 +010033NEPoolingLayer::NEPoolingLayer()
34 : _pooling_layer_kernel(), _border_handler(), _is_global_pooling_layer(false)
35{
36}
37
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038void NEPoolingLayer::configure(ITensor *input, ITensor *output, const PoolingLayerInfo &pool_info)
39{
Gian Marco Iodice16824302017-09-28 15:41:37 +010040 // Check if we have Global Pooling Layer
Isabella Gottardi6e464c32018-01-26 12:32:45 +000041 _is_global_pooling_layer = (input->info()->dimension(0) == pool_info.pool_size().width) && (input->info()->dimension(1) == pool_info.pool_size().height);
Gian Marco Iodice16824302017-09-28 15:41:37 +010042
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043 // Configure pooling kernel
Gian Marco Iodice16824302017-09-28 15:41:37 +010044 _pooling_layer_kernel.configure(input, output, pool_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
Georgios Pinitas55186712018-01-08 17:37:12 +000046 // Configure border depending on operation required (quantize border in case of asymmetric data_type)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047 BorderMode border_mode = (pool_info.pool_type() == PoolingType::MAX) ? BorderMode::REPLICATE : BorderMode::CONSTANT;
Georgios Pinitas55186712018-01-08 17:37:12 +000048 PixelValue zero_value(0.f);
49 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && !pool_info.exclude_padding())
50 {
51 zero_value = PixelValue(static_cast<uint32_t>(input->info()->quantization_info().offset));
52 }
53 _border_handler.configure(input, _pooling_layer_kernel.border_size(), border_mode, zero_value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054}
Gian Marco Iodice16824302017-09-28 15:41:37 +010055
Michalis Spyrouafa5d812017-11-30 14:25:57 +000056Status NEPoolingLayer::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
57{
58 return NEPoolingLayerKernel::validate(input, output, pool_info);
59}
60
Gian Marco Iodice16824302017-09-28 15:41:37 +010061void NEPoolingLayer::run()
62{
63 // Fill border
64 NEScheduler::get().schedule(&_border_handler, Window::DimY);
65
66 // Run pooling layer
67 NEScheduler::get().schedule(&_pooling_layer_kernel, _is_global_pooling_layer ? Window::DimZ : Window::DimY);
68}