blob: 1df94aef06b1ae0b9ead23bd5674018819206824 [file] [log] [blame]
Georgios Pinitas284cfe22018-02-13 12:15:13 +00001/*
Isabella Gottardi0a1090a2019-02-14 18:07:36 +00002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitas284cfe22018-02-13 12:15:13 +00003 *
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/NEPermuteKernel.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/utils/misc/ShapeCalculator.h"
33
34namespace
35{
36#include "arm_compute/core/NEON/kernels/convolution/common/shims.hpp"
37} // namespace
38
39#include <cstddef>
40#include <cstdint>
41
42using namespace arm_compute;
43
44namespace
45{
Pablo Tello35767bc2018-12-05 17:36:30 +000046inline bool is_permutation_supported(const PermutationVector &v)
47{
48 static const std::array<PermutationVector, 6> permutations3 =
49 {
Georgios Pinitasd57891a2019-02-19 18:10:03 +000050 {
51 PermutationVector(2U, 0U, 1U),
52 PermutationVector(1U, 2U, 0U),
53 PermutationVector(0U, 1U, 2U),
54 PermutationVector(0U, 2U, 1U),
55 PermutationVector(1U, 0U, 2U),
56 PermutationVector(2U, 1U, 0U),
57 }
Pablo Tello35767bc2018-12-05 17:36:30 +000058 };
59 static const std::array<PermutationVector, 24> permutations4 =
60 {
Georgios Pinitasd57891a2019-02-19 18:10:03 +000061 {
62 PermutationVector(0U, 1U, 2U, 3U),
63 PermutationVector(1U, 0U, 2U, 3U),
64 PermutationVector(2U, 0U, 1U, 3U),
65 PermutationVector(0U, 2U, 1U, 3U),
66 PermutationVector(1U, 2U, 0U, 3U),
67 PermutationVector(2U, 1U, 0U, 3U),
68 PermutationVector(2U, 1U, 3U, 0U),
69 PermutationVector(1U, 2U, 3U, 0U),
70 PermutationVector(3U, 2U, 1U, 0U),
71 PermutationVector(2U, 3U, 1U, 0U),
72 PermutationVector(1U, 3U, 2U, 0U),
73 PermutationVector(3U, 1U, 2U, 0U),
74 PermutationVector(3U, 0U, 2U, 1U),
75 PermutationVector(0U, 3U, 2U, 1U),
76 PermutationVector(2U, 3U, 0U, 1U),
77 PermutationVector(3U, 2U, 0U, 1U),
78 PermutationVector(0U, 2U, 3U, 1U),
79 PermutationVector(2U, 0U, 3U, 1U),
80 PermutationVector(1U, 0U, 3U, 2U),
81 PermutationVector(0U, 1U, 3U, 2U),
82 PermutationVector(3U, 1U, 0U, 2U),
83 PermutationVector(1U, 3U, 0U, 2U),
84 PermutationVector(0U, 3U, 1U, 2U),
85 PermutationVector(3U, 0U, 1U, 2U)
86 }
Pablo Tello35767bc2018-12-05 17:36:30 +000087 };
88
89 return (permutations3.end() != std::find(permutations3.begin(), permutations3.end(), v)) || (permutations4.end() != std::find(permutations4.begin(), permutations4.end(), v));
90}
91
Georgios Pinitas284cfe22018-02-13 12:15:13 +000092Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
93{
Anthony Barbiereaefd002018-07-20 17:49:35 +010094 //Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010095 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
96 DataType::U16, DataType::S16,
Georgios Pinitas284cfe22018-02-13 12:15:13 +000097 DataType::U32, DataType::S32,
98 DataType::F16, DataType::F32);
Pablo Tello35767bc2018-12-05 17:36:30 +000099
100 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!is_permutation_supported(perm), "PermutationVector not supported.");
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000101
102 const TensorShape output_shape = misc::shape_calculator::compute_permutation_output_shape(*input, perm);
103
104 // Validate configured output
105 if(output->total_size() != 0)
106 {
107 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +0000108 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000110 }
111
112 return Status{};
113}
114} // namespace
115
116template <typename T>
117void NEPermuteKernel::run_permute(const Window &window)
118{
Pablo Tello35767bc2018-12-05 17:36:30 +0000119 const DataLayout input_layout = _input->info()->data_layout();
120
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000121 // Input window
122 Window window_in = window;
Pablo Tello35767bc2018-12-05 17:36:30 +0000123
124 // we only support these two configs in arm_compute/core/NEON/kernels/convolution/common/shims.hpp, for all others
125 // we have to fall back to C++
126 if((input_layout == DataLayout::NCHW && _perm == PermutationVector{ 2U, 0U, 1U }) || (input_layout == DataLayout::NHWC && _perm == PermutationVector{ 1U, 2U, 0U }))
127 {
128 window_in.set(Window::DimX, Window::Dimension(window.x().start(), window.x().end(), window.x().end() - window.x().start()));
129 window_in.set(Window::DimY, Window::Dimension(window.y().start(), window.y().end(), window.y().end() - window.y().start()));
130 window_in.set(Window::DimZ, Window::Dimension(window.z().start(), window.z().end(), window.z().end() - window.z().start()));
131 window_in.set(3, Window::Dimension(window[3].start(), window[3].end(), window[3].end() - window[3].start()));
132 }
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000133
134 // Output window
135 Window window_out(window);
136 const Window::Dimension zero_window = Window::Dimension(0, 0, 0);
137 for(size_t d = 0; d <= _perm.num_dimensions(); ++d)
138 {
139 window_out.set(d, zero_window);
140 }
141
142 // Create iterators
143 Iterator in(_input, window_in);
144 Iterator out(_output, window_out);
145
Pablo Tello35767bc2018-12-05 17:36:30 +0000146 int in_row_stride = 0;
147 int in_col_stride = 0;
148 int in_channel_stride = 0;
149 int in_batch_stride = 0;
150 int n_cols = 0;
151 int n_rows = 0;
152 int n_channels = 0;
153 int n_batches = 0;
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000154
Pablo Tello35767bc2018-12-05 17:36:30 +0000155 switch(input_layout)
156 {
157 case DataLayout::NCHW:
158 {
159 in_row_stride = _input->info()->strides_in_bytes().y() / sizeof(T);
160 in_channel_stride = _input->info()->strides_in_bytes().z() / sizeof(T);
161 in_batch_stride = _input->info()->strides_in_bytes()[3] / sizeof(T);
162 n_cols = _input->info()->tensor_shape().x();
163 n_rows = window_in.y().step();
164 n_channels = _input->info()->tensor_shape().z();
165 n_batches = _input->info()->tensor_shape()[3];
166 break;
167 }
168 case DataLayout::NHWC:
169 {
170 in_col_stride = _input->info()->strides_in_bytes().y() / sizeof(T);
171 in_row_stride = _input->info()->strides_in_bytes().z() / sizeof(T);
172 in_batch_stride = _input->info()->strides_in_bytes()[3] / sizeof(T);
173 n_channels = _input->info()->tensor_shape().x();
174 n_cols = window_in.y().step();
175 n_rows = _input->info()->tensor_shape().z();
176 n_batches = _input->info()->tensor_shape()[3];
177 break;
178 }
179 default:
180 {
181 ARM_COMPUTE_ERROR("Invalid input data layout.");
182 break;
183 }
184 }
185
186 // CHW -> HWC
187 if(input_layout == DataLayout::NCHW && _perm == PermutationVector{ 2U, 0U, 1U })
188 {
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000189 const int out_channel_stride = _output->info()->strides_in_bytes().x() / sizeof(T);
190 const int out_col_stride = _output->info()->strides_in_bytes().y() / sizeof(T);
191 const int out_row_stride = _output->info()->strides_in_bytes().z() / sizeof(T);
192 const int out_batch_stride = _output->info()->strides_in_bytes()[3] / sizeof(T);
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000193 execute_window_loop(window_in, [&](const Coordinates & id)
194 {
195 const int idx = id[0] * out_col_stride + id[1] * out_row_stride + id[2] * out_channel_stride;
196 reorder::nchw_to_nhwc(reinterpret_cast<const T *>(in.ptr()), reinterpret_cast<T *>(out.ptr()) + idx,
197 n_batches, n_channels, n_rows, n_cols,
198 in_batch_stride, in_channel_stride, in_row_stride,
199 out_batch_stride, out_row_stride, out_col_stride);
200 },
201 in, out);
202 }
203 // HWC -> CHW
Pablo Tello35767bc2018-12-05 17:36:30 +0000204 else if(input_layout == DataLayout::NHWC && _perm == PermutationVector{ 1U, 2U, 0U })
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000205 {
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000206 const int out_col_stride = _output->info()->strides_in_bytes().x() / sizeof(T);
207 const int out_row_stride = _output->info()->strides_in_bytes().y() / sizeof(T);
208 const int out_channel_stride = _output->info()->strides_in_bytes().z() / sizeof(T);
209 const int out_batch_stride = _output->info()->strides_in_bytes()[3] / sizeof(T);
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000210 execute_window_loop(window_in, [&](const Coordinates & id)
211 {
212 const int idx = id[0] * out_channel_stride + id[1] * out_col_stride + id[2] * out_row_stride;
213 reorder::nhwc_to_nchw(reinterpret_cast<const T *>(in.ptr()), reinterpret_cast<T *>(out.ptr()) + idx,
214 n_batches, n_rows, n_cols, n_channels,
215 in_batch_stride, in_row_stride, in_col_stride,
216 out_batch_stride, out_channel_stride, out_row_stride);
217 },
218 in, out);
219 }
220 else
221 {
Pablo Tello35767bc2018-12-05 17:36:30 +0000222 // All other cases fall back to C++
223 // Permute strides
224 Strides strides = _output->info()->strides_in_bytes();
225 Strides perm_strides = strides;
226 permute_strides(perm_strides, _perm);
227 const int perm_stride_3 = _input->info()->num_dimensions() >= 4 ? perm_strides[3] : 0;
228 execute_window_loop(window, [&](const Coordinates & id)
229 {
230 const int idx = id[0] * perm_strides[0] + id[1] * perm_strides[1] + id[2] * perm_strides[2] + id[3] * perm_stride_3;
231 *(reinterpret_cast<T *>(out.ptr() + idx)) = *(reinterpret_cast<const T *>(in.ptr()));
232 },
233 in, out);
Georgios Pinitas284cfe22018-02-13 12:15:13 +0000234 }
235}
236
237NEPermuteKernel::NEPermuteKernel()
238 : _func(), _input(nullptr), _output(nullptr), _perm()
239{
240}
241
242void NEPermuteKernel::configure(const ITensor *input, ITensor *output, const PermutationVector &perm)
243{
244 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
245 const TensorShape output_shape = misc::shape_calculator::compute_permutation_output_shape(*input->info(), perm);
246 // Output auto inizialitation if not yet initialized
247 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
248
249 // Perform validation step
250 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), perm));
251
252 _input = input;
253 _output = output;
254 _perm = perm;
255
256 switch(input->info()->element_size())
257 {
258 case 1:
259 _func = &NEPermuteKernel::run_permute<uint8_t>;
260 break;
261 case 2:
262 _func = &NEPermuteKernel::run_permute<uint16_t>;
263 break;
264 case 4:
265 _func = &NEPermuteKernel::run_permute<uint32_t>;
266 break;
267 default:
268 ARM_COMPUTE_ERROR("Element size not supported");
269 break;
270 }
271
272 // Configure kernel window
273 Window win = calculate_max_window(*input->info(), Steps());
274
275 // The NEPermute doesn't need padding so update_window_and_padding() can be skipped
276 Coordinates coord;
277 coord.set_num_dimensions(output->info()->num_dimensions());
278 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
279
280 ICPPKernel::configure(win);
281}
282
283Status NEPermuteKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
284{
285 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, perm));
286 return Status{};
287}
288
289void NEPermuteKernel::run(const Window &window, const ThreadInfo &info)
290{
291 ARM_COMPUTE_UNUSED(info);
292 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
293 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICPPKernel::window(), window);
294
295 if(_func != nullptr)
296 {
297 (this->*_func)(window);
298 }
299}