blob: 83ab611b67e3dd3a9ff1c7afd368192afbf96c48 [file] [log] [blame]
Georgios Pinitas7b7858d2017-06-21 16:44:24 +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#include "arm_compute/core/NEON/kernels/NEROIPoolingLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/Window.h"
33#include "support/ToolchainSupport.h"
34
35#include <cfloat>
36#include <cmath>
37
38using namespace arm_compute;
39
40NEROIPoolingLayerKernel::NEROIPoolingLayerKernel()
41 : _input(nullptr), _rois(nullptr), _output(nullptr), _pool_info(0, 0, 0.f)
42{
43}
44
45void NEROIPoolingLayerKernel::configure(const ITensor *input, const IROIArray *rois, ITensor *output, const ROIPoolingLayerInfo &pool_info)
46{
47 ARM_COMPUTE_ERROR_ON_NULLPTR(input, rois, output);
48 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
49 ARM_COMPUTE_ERROR_ON((pool_info.pooled_width() == 0) || (pool_info.pooled_height() == 0));
50 ARM_COMPUTE_ERROR_ON(rois->num_values() == 0);
51
52 // Output auto inizialitation if not yet initialized
SiCong Li3e363692017-07-04 15:02:10 +010053 TensorShape output_shape(pool_info.pooled_width(), pool_info.pooled_height(), input->info()->dimension(2), rois->num_values());
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010054 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
55
56 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
57 ARM_COMPUTE_ERROR_ON((output->info()->dimension(0) != pool_info.pooled_width()) || (output->info()->dimension(1) != pool_info.pooled_height()));
58
59 // Set instance variables
60 _input = input;
61 _rois = rois;
62 _output = output;
63 _pool_info = pool_info;
64
65 // Configure kernel window
66 Window window;
67 window.set(Window::DimX, Window::Dimension(0, rois->num_values()));
68 window.set(Window::DimY, Window::Dimension(0, 1));
69
70 AccessWindowStatic input_access(input->info(),
71 input->info()->valid_region().start(0),
72 input->info()->valid_region().start(1),
73 input->info()->valid_region().end(0),
74 input->info()->valid_region().end(1));
75 AccessWindowStatic output_access(output->info(), 0, 0, pool_info.pooled_width(), pool_info.pooled_height());
76
77 update_window_and_padding(window, input_access, output_access);
78 output_access.set_valid_region(window, ValidRegion(Coordinates(), output->info()->tensor_shape()));
79 INEKernel::configure(window);
80}
81
Moritz Pflanzerc186b572017-09-07 09:48:04 +010082void NEROIPoolingLayerKernel::run(const Window &window, const ThreadInfo &info)
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010083{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010084 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010085 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
86 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
87
88 const int roi_list_start = window.x().start();
89 const int roi_list_end = window.x().end();
90 const int width = _input->info()->dimension(Window::DimX);
91 const int height = _input->info()->dimension(Window::DimY);
92 const int fms = _input->info()->dimension(Window::DimZ);
93 const int pooled_w = _pool_info.pooled_width();
94 const int pooled_h = _pool_info.pooled_height();
95 const float spatial_scale = _pool_info.spatial_scale();
96
97 for(int roi_indx = roi_list_start; roi_indx < roi_list_end; ++roi_indx)
98 {
99 const ROI &curr_roi = _rois->at(roi_indx);
100
101 // Scale ROI
102 const int roi_batch = curr_roi.batch_idx;
103 const int roi_anchor_x = support::cpp11::round(curr_roi.rect.x * spatial_scale);
104 const int roi_anchor_y = support::cpp11::round(curr_roi.rect.y * spatial_scale);
105 const int roi_width = std::max(support::cpp11::round(curr_roi.rect.width * spatial_scale), 1.f);
106 const int roi_height = std::max(support::cpp11::round(curr_roi.rect.height * spatial_scale), 1.f);
107
108 // Determine pooling regions
109 const auto pool_region_size_x = static_cast<float>(roi_width) / pooled_w;
110 const auto pool_region_size_y = static_cast<float>(roi_height) / pooled_h;
111
112 // Iterate through all feature maps
113 for(int fm = 0; fm < fms; ++fm)
114 {
115 // Iterate through all output pixels
116 for(int py = 0; py < pooled_h; ++py)
117 {
118 for(int px = 0; px < pooled_w; ++px)
119 {
120 auto region_start_x = static_cast<int>(std::floor(px * pool_region_size_x));
121 auto region_end_x = static_cast<int>(std::ceil((px + 1) * pool_region_size_x));
122 auto region_start_y = static_cast<int>(std::floor(py * pool_region_size_y));
123 auto region_end_y = static_cast<int>(std::ceil((py + 1) * pool_region_size_y));
124
125 region_start_x = std::min(std::max(region_start_x + roi_anchor_x, 0), width);
126 region_end_x = std::min(std::max(region_end_x + roi_anchor_x, 0), width);
127 region_start_y = std::min(std::max(region_start_y + roi_anchor_y, 0), height);
128 region_end_y = std::min(std::max(region_end_y + roi_anchor_y, 0), height);
129
130 // Iterate through the pooling region
131 if((region_end_x <= region_start_x) || (region_end_y <= region_start_y))
132 {
133 *reinterpret_cast<float *>(_output->ptr_to_element(Coordinates(px, py, fm, roi_indx))) = 0;
134 }
135 else
136 {
137 float curr_max = -FLT_MAX;
138 for(int j = region_start_y; j < region_end_y; ++j)
139 {
140 for(int i = region_start_x; i < region_end_x; ++i)
141 {
142 const auto val = *reinterpret_cast<const float *>(_input->ptr_to_element(Coordinates(i, j, fm, roi_batch)));
143 curr_max = std::max(val, curr_max);
144 }
145 }
146 *reinterpret_cast<float *>(_output->ptr_to_element(Coordinates(px, py, fm, roi_indx))) = curr_max;
147 }
148 }
149 }
150 }
151 }
152}