blob: 6fd6792ff89e0f4e3b9e3bce735481257a66035d [file] [log] [blame]
Georgios Pinitas7b7858d2017-06-21 16:44:24 +01001/*
Manuel Bottinicc5171b2019-01-09 17:04:39 +00002 * Copyright (c) 2017-2019 ARM Limited.
Georgios Pinitas7b7858d2017-06-21 16:44:24 +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/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
Manuel Bottinicc5171b2019-01-09 17:04:39 +000038namespace arm_compute
39{
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010040NEROIPoolingLayerKernel::NEROIPoolingLayerKernel()
41 : _input(nullptr), _rois(nullptr), _output(nullptr), _pool_info(0, 0, 0.f)
42{
43}
44
Manuel Bottinicc5171b2019-01-09 17:04:39 +000045void NEROIPoolingLayerKernel::configure(const ITensor *input, const ITensor *rois, ITensor *output, const ROIPoolingLayerInfo &pool_info)
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010046{
Manuel Bottinicc5171b2019-01-09 17:04:39 +000047 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, rois);
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010048
Manuel Bottinicc5171b2019-01-09 17:04:39 +000049 //Validate arguments
50 ARM_COMPUTE_ERROR_ON_NULLPTR(input->info(), rois->info(), output->info());
51 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(rois, 1, DataType::U16);
52 ARM_COMPUTE_ERROR_ON(rois->info()->dimension(0) != 5);
53 ARM_COMPUTE_ERROR_ON(rois->info()->num_dimensions() > 2);
54 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
55 ARM_COMPUTE_ERROR_ON((pool_info.pooled_width() == 0) || (pool_info.pooled_height() == 0));
56
57 if(output->info()->total_size() != 0)
58 {
59 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
60 ARM_COMPUTE_ERROR_ON((output->info()->dimension(0) != pool_info.pooled_width()) || (output->info()->dimension(1) != pool_info.pooled_height()));
61 ARM_COMPUTE_ERROR_ON(input->info()->dimension(2) != output->info()->dimension(2));
62 ARM_COMPUTE_ERROR_ON(rois->info()->dimension(1) != output->info()->dimension(3));
63 }
64
65 // Output auto initialization if not yet initialized
66 TensorShape output_shape(pool_info.pooled_width(), pool_info.pooled_height(), input->info()->dimension(2), rois->info()->dimension(1));
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010067 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type());
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010068
69 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
70 ARM_COMPUTE_ERROR_ON((output->info()->dimension(0) != pool_info.pooled_width()) || (output->info()->dimension(1) != pool_info.pooled_height()));
71
72 // Set instance variables
73 _input = input;
74 _rois = rois;
75 _output = output;
76 _pool_info = pool_info;
77
78 // Configure kernel window
79 Window window;
Manuel Bottinicc5171b2019-01-09 17:04:39 +000080 window.set(Window::DimX, Window::Dimension(0, rois->info()->dimension(1)));
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010081 window.set(Window::DimY, Window::Dimension(0, 1));
82
83 AccessWindowStatic input_access(input->info(),
84 input->info()->valid_region().start(0),
85 input->info()->valid_region().start(1),
86 input->info()->valid_region().end(0),
87 input->info()->valid_region().end(1));
88 AccessWindowStatic output_access(output->info(), 0, 0, pool_info.pooled_width(), pool_info.pooled_height());
89
90 update_window_and_padding(window, input_access, output_access);
91 output_access.set_valid_region(window, ValidRegion(Coordinates(), output->info()->tensor_shape()));
92 INEKernel::configure(window);
93}
94
Moritz Pflanzerc186b572017-09-07 09:48:04 +010095void NEROIPoolingLayerKernel::run(const Window &window, const ThreadInfo &info)
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010096{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010097 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas7b7858d2017-06-21 16:44:24 +010098 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
99 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
100
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000101 const size_t values_per_roi = _rois->info()->dimension(0);
102
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100103 const int roi_list_start = window.x().start();
104 const int roi_list_end = window.x().end();
105 const int width = _input->info()->dimension(Window::DimX);
106 const int height = _input->info()->dimension(Window::DimY);
107 const int fms = _input->info()->dimension(Window::DimZ);
108 const int pooled_w = _pool_info.pooled_width();
109 const int pooled_h = _pool_info.pooled_height();
110 const float spatial_scale = _pool_info.spatial_scale();
111
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000112 const auto *rois_ptr = reinterpret_cast<const uint16_t *>(_rois->buffer());
113
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100114 for(int roi_indx = roi_list_start; roi_indx < roi_list_end; ++roi_indx)
115 {
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000116 const unsigned int roi_batch = rois_ptr[values_per_roi * roi_indx];
117 const auto x1 = rois_ptr[values_per_roi * roi_indx + 1];
118 const auto y1 = rois_ptr[values_per_roi * roi_indx + 2];
119 const auto x2 = rois_ptr[values_per_roi * roi_indx + 3];
120 const auto y2 = rois_ptr[values_per_roi * roi_indx + 4];
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100121
122 // Scale ROI
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000123 const int roi_anchor_x = support::cpp11::round(x1 * spatial_scale);
124 const int roi_anchor_y = support::cpp11::round(y1 * spatial_scale);
125 const int roi_width = std::max(support::cpp11::round((x2 - x1) * spatial_scale), 1.f);
126 const int roi_height = std::max(support::cpp11::round((y2 - y1) * spatial_scale), 1.f);
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100127
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100128 // Iterate through all feature maps
129 for(int fm = 0; fm < fms; ++fm)
130 {
131 // Iterate through all output pixels
132 for(int py = 0; py < pooled_h; ++py)
133 {
134 for(int px = 0; px < pooled_w; ++px)
135 {
SiCong Licfb65532017-09-12 19:06:28 +0100136 auto region_start_x = static_cast<int>(std::floor((static_cast<float>(px) / pooled_w) * roi_width));
137 auto region_end_x = static_cast<int>(std::floor((static_cast<float>(px + 1) / pooled_w) * roi_width));
138 auto region_start_y = static_cast<int>(std::floor((static_cast<float>(py) / pooled_h) * roi_height));
139 auto region_end_y = static_cast<int>(std::floor((static_cast<float>(py + 1) / pooled_h) * roi_height));
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100140
141 region_start_x = std::min(std::max(region_start_x + roi_anchor_x, 0), width);
142 region_end_x = std::min(std::max(region_end_x + roi_anchor_x, 0), width);
143 region_start_y = std::min(std::max(region_start_y + roi_anchor_y, 0), height);
144 region_end_y = std::min(std::max(region_end_y + roi_anchor_y, 0), height);
145
146 // Iterate through the pooling region
147 if((region_end_x <= region_start_x) || (region_end_y <= region_start_y))
148 {
149 *reinterpret_cast<float *>(_output->ptr_to_element(Coordinates(px, py, fm, roi_indx))) = 0;
150 }
151 else
152 {
153 float curr_max = -FLT_MAX;
154 for(int j = region_start_y; j < region_end_y; ++j)
155 {
156 for(int i = region_start_x; i < region_end_x; ++i)
157 {
158 const auto val = *reinterpret_cast<const float *>(_input->ptr_to_element(Coordinates(i, j, fm, roi_batch)));
159 curr_max = std::max(val, curr_max);
160 }
161 }
162 *reinterpret_cast<float *>(_output->ptr_to_element(Coordinates(px, py, fm, roi_indx))) = curr_max;
163 }
164 }
165 }
166 }
167 }
168}
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000169} // namespace arm_compute