blob: bbd3fac63f33f1bc7581f5549690088ed9f64b9e [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/PixelValue.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Window.h"
Georgios Pinitas658039b2017-09-15 16:30:50 +010033#include "arm_compute/runtime/NEON/NEScheduler.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010035#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
37#include <cmath>
38#include <cstddef>
39#include <utility>
40
41using namespace arm_compute;
42
43namespace
44{
45void precompute_dx_dy_offsets(ITensor *dx, ITensor *dy, ITensor *offsets, float wr, float hr, size_t input_element_size)
46{
47 ARM_COMPUTE_ERROR_ON(nullptr == offsets);
48
49 Window win;
50 win.set(Window::DimX, Window::Dimension(0, offsets->info()->dimension(0), 1));
51 win.set(Window::DimY, Window::Dimension(0, offsets->info()->dimension(1), 1));
52
53 if(dx != nullptr && dy != nullptr)
54 {
55 // Pre-compute the offset and pixel's distance for BILINEAR interpolation
56 Iterator offsets_it(offsets, win);
57 Iterator dx_it(dx, win);
58 Iterator dy_it(dy, win);
59
60 execute_window_loop(win, [&](const Coordinates & id)
61 {
62 const float in_x = (id.x() + 0.5f) * wr - 0.5f;
63 const float in_y = (id.y() + 0.5f) * hr - 0.5f;
64 const int in_xi = std::floor(in_x);
65 const int in_yi = std::floor(in_y);
66
67 *reinterpret_cast<int32_t *>(offsets_it.ptr()) = in_xi * input_element_size;
68 *reinterpret_cast<float *>(dx_it.ptr()) = in_x - in_xi;
69 *reinterpret_cast<float *>(dy_it.ptr()) = in_y - in_yi;
70 },
71 offsets_it, dx_it, dy_it);
72 }
73 else
74 {
75 // Pre-compute the offset for NEAREST interpolation
76 Iterator offsets_it(offsets, win);
77
78 execute_window_loop(win, [&](const Coordinates & id)
79 {
80 const size_t in_xi = (id.x() + 0.5f) * wr;
81
82 *reinterpret_cast<int32_t *>(offsets_it.ptr()) = in_xi * input_element_size;
83 },
84 offsets_it);
85 }
86}
87} // namespace
88
Georgios Pinitas3021edf2017-09-18 17:55:22 +010089NEScale::NEScale() // NOLINT
90 : _offsets(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010091 _dx(),
Georgios Pinitas658039b2017-09-15 16:30:50 +010092 _dy(),
93 _scale_kernel(),
94 _border_handler()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095{
96}
97
Georgios Pinitas583137c2017-08-31 18:12:42 +010098void NEScale::configure(ITensor *input, ITensor *output, InterpolationPolicy policy, BorderMode border_mode, PixelValue constant_border_value)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099{
100 ARM_COMPUTE_ERROR_ON(nullptr == input);
101 ARM_COMPUTE_ERROR_ON(nullptr == output);
102
103 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
104 {
105 ARM_COMPUTE_ERROR_ON(input->info()->dimension(i) != output->info()->dimension(i));
106 }
107
108 // Get the tensor shape
109 const TensorShape shape(output->info()->dimension(0), output->info()->dimension(1));
110
111 // Compute the ratio between source width/height and destination width/height
112 const auto wr = static_cast<float>(input->info()->dimension(0)) / static_cast<float>(output->info()->dimension(0));
113 const auto hr = static_cast<float>(input->info()->dimension(1)) / static_cast<float>(output->info()->dimension(1));
114
115 // Get the element size of the input image
116 const size_t input_element_size = input->info()->element_size();
117
118 // Area interpolation behaves as Nearest Neighbour in case of up-sampling
119 if(policy == InterpolationPolicy::AREA && wr <= 1.f && hr <= 1.f)
120 {
121 policy = InterpolationPolicy::NEAREST_NEIGHBOR;
122 }
123
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124 // Check if the border mode is UNDEFINED
125 const bool border_undefined = border_mode == BorderMode::UNDEFINED;
126
127 switch(policy)
128 {
129 case InterpolationPolicy::NEAREST_NEIGHBOR:
130 {
131 TensorInfo tensor_info_offsets(shape, Format::S32);
132 _offsets.allocator()->init(tensor_info_offsets);
133
Georgios Pinitas658039b2017-09-15 16:30:50 +0100134 _scale_kernel.configure(input, nullptr, nullptr, &_offsets, output, policy, border_undefined);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135
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_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 _offsets.allocator()->init(tensor_info_offsets);
149 _dx.allocator()->init(tensor_info_dxdy);
150 _dy.allocator()->init(tensor_info_dxdy);
151
Georgios Pinitas658039b2017-09-15 16:30:50 +0100152 _scale_kernel.configure(input, &_dx, &_dy, &_offsets, output, policy, border_undefined);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153
154 // Allocate once the configure methods have been called
155 _offsets.allocator()->allocate();
156 _dx.allocator()->allocate();
157 _dy.allocator()->allocate();
158
159 // Pre-compute dx, dy and offsets for bilinear interpolation
160 precompute_dx_dy_offsets(&_dx, &_dy, &_offsets, wr, hr, input_element_size);
161 break;
162 }
163 case InterpolationPolicy::AREA:
164 {
Georgios Pinitas658039b2017-09-15 16:30:50 +0100165 _scale_kernel.configure(input, nullptr, nullptr, nullptr, output, policy, border_undefined);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166 break;
167 }
168 default:
169 ARM_COMPUTE_ERROR("Unsupported interpolation mode");
170 }
171
Georgios Pinitas658039b2017-09-15 16:30:50 +0100172 _border_handler.configure(input, _scale_kernel.border_size(), border_mode, PixelValue(constant_border_value));
173}
174
175void NEScale::run()
176{
Georgios Pinitas658039b2017-09-15 16:30:50 +0100177 NEScheduler::get().schedule(&_border_handler, Window::DimZ);
178 NEScheduler::get().schedule(&_scale_kernel, Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100179}