blob: bd8cf3ac7a01c34b6ca2688d61db2d32ee0cb701 [file] [log] [blame]
Anthony Barbier871448e2017-03-24 14:54:29 +00001/*
2 * Copyright (c) 2016, 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/runtime/NEON/functions/NEScale.h"
25
26#include "arm_compute/core/Coordinates.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/NEON/kernels/NEScaleKernel.h"
31#include "arm_compute/core/PixelValue.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Window.h"
34#include "arm_compute/runtime/TensorAllocator.h"
35
36#include <cmath>
37#include <cstddef>
38#include <utility>
39
40using namespace arm_compute;
41
42namespace
43{
44void precompute_dx_dy_offsets(ITensor *dx, ITensor *dy, ITensor *offsets, float wr, float hr, size_t input_stride, size_t input_element_size)
45{
46 ARM_COMPUTE_ERROR_ON(nullptr == offsets);
47
48 Window win;
49 win.set(Window::DimX, Window::Dimension(0, offsets->info()->dimension(0), 1));
50 win.set(Window::DimY, Window::Dimension(0, offsets->info()->dimension(1), 1));
51
52 if(dx != nullptr && dy != nullptr)
53 {
54 // Pre-compute the offset and pixel's distance for BILINEAR interpolation
55 Iterator offsets_it(offsets, win);
56 Iterator dx_it(dx, win);
57 Iterator dy_it(dy, win);
58
59 execute_window_loop(win, [&](const Coordinates & id)
60 {
61 const float in_x = (id.x() + 0.5f) * wr - 0.5f;
62 const float in_y = (id.y() + 0.5f) * hr - 0.5f;
63 const int in_xi = std::floor(in_x);
64 const int in_yi = std::floor(in_y);
65
66 *reinterpret_cast<int32_t *>(offsets_it.ptr()) = in_xi * input_element_size + in_yi * input_stride;
67 *reinterpret_cast<float *>(dx_it.ptr()) = in_x - in_xi;
68 *reinterpret_cast<float *>(dy_it.ptr()) = in_y - in_yi;
69 },
70 offsets_it, dx_it, dy_it);
71 }
72 else
73 {
74 // Pre-compute the offset for NEAREST interpolation
75 Iterator offsets_it(offsets, win);
76
77 execute_window_loop(win, [&](const Coordinates & id)
78 {
79 const size_t in_xi = (id.x() + 0.5f) * wr;
80 const size_t in_yi = (id.y() + 0.5f) * hr;
81
82 *reinterpret_cast<int32_t *>(offsets_it.ptr()) = in_xi * input_element_size + in_yi * input_stride;
83 },
84 offsets_it);
85 }
86}
87} // namespace
88
89NEScale::NEScale()
90 : _offsets(), _dx(), _dy()
91{
92}
93
94void NEScale::configure(ITensor *input, ITensor *output, InterpolationPolicy policy, BorderMode border_mode, uint8_t constant_border_value)
95{
96 ARM_COMPUTE_ERROR_ON(nullptr == input);
97 ARM_COMPUTE_ERROR_ON(nullptr == output);
98
99 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
100 {
101 ARM_COMPUTE_ERROR_ON(input->info()->dimension(i) != output->info()->dimension(i));
102 }
103
104 // Get the tensor shape
105 const TensorShape shape(output->info()->dimension(0), output->info()->dimension(1));
106
107 // Compute the ratio between source width/height and destination width/height
108 const auto wr = static_cast<float>(input->info()->dimension(0)) / static_cast<float>(output->info()->dimension(0));
109 const auto hr = static_cast<float>(input->info()->dimension(1)) / static_cast<float>(output->info()->dimension(1));
110
111 // Get the input stride and the input element size
112 const size_t input_stride = input->info()->strides_in_bytes()[1];
113 const size_t input_element_size = input->info()->element_size();
114
115 // Area interpolation behaves as Nearest Neighbour in case of up-sampling
116 if(policy == InterpolationPolicy::AREA && wr <= 1.f && hr <= 1.f)
117 {
118 policy = InterpolationPolicy::NEAREST_NEIGHBOR;
119 }
120
121 auto k = arm_compute::cpp14::make_unique<NEScaleKernel>();
122
123 // Check if the border mode is UNDEFINED
124 const bool border_undefined = border_mode == BorderMode::UNDEFINED;
125
126 switch(policy)
127 {
128 case InterpolationPolicy::NEAREST_NEIGHBOR:
129 {
130 TensorInfo tensor_info_offsets(shape, Format::S32);
131 tensor_info_offsets.auto_padding();
132 _offsets.allocator()->init(tensor_info_offsets);
133
134 k->configure(input, nullptr, nullptr, &_offsets, output, policy, border_undefined);
135
136 // Allocate once the configure methods have been called
137 _offsets.allocator()->allocate();
138
139 // Pre-compute offsets for nearest interpolation
140 precompute_dx_dy_offsets(nullptr, nullptr, &_offsets, wr, hr, input_stride, input_element_size);
141 break;
142 }
143 case InterpolationPolicy::BILINEAR:
144 {
145 TensorInfo tensor_info_offsets(shape, Format::S32);
146 TensorInfo tensor_info_dxdy(shape, Format::F32);
147
148 tensor_info_offsets.auto_padding();
149 tensor_info_dxdy.auto_padding();
150
151 _offsets.allocator()->init(tensor_info_offsets);
152 _dx.allocator()->init(tensor_info_dxdy);
153 _dy.allocator()->init(tensor_info_dxdy);
154
155 k->configure(input, &_dx, &_dy, &_offsets, output, policy, border_undefined);
156
157 // Allocate once the configure methods have been called
158 _offsets.allocator()->allocate();
159 _dx.allocator()->allocate();
160 _dy.allocator()->allocate();
161
162 // Pre-compute dx, dy and offsets for bilinear interpolation
163 precompute_dx_dy_offsets(&_dx, &_dy, &_offsets, wr, hr, input_stride, input_element_size);
164 break;
165 }
166 case InterpolationPolicy::AREA:
167 {
168 k->configure(input, nullptr, nullptr, nullptr, output, policy, border_undefined);
169 break;
170 }
171 default:
172 ARM_COMPUTE_ERROR("Unsupported interpolation mode");
173 }
174
175 _kernel = std::move(k);
176 _border_handler.configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
177}