blob: 0c33f36983c0b4388e9b1207a9fbf85b28b20125 [file] [log] [blame]
Isabella Gottardiee7c15d2018-12-17 16:15:34 +00001/*
2 * Copyright (c) 2018-2019 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/NEStackLayerKernel.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/IAccessWindow.h"
30#include "arm_compute/core/ITensor.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35#include "arm_compute/core/utils/misc/ShapeCalculator.h"
36
37#include "support/ToolchainSupport.h"
38
39using namespace arm_compute;
40using namespace arm_compute::misc::shape_calculator;
41
42namespace
43{
44Status validate_arguments(const ITensorInfo *input, unsigned int axis, unsigned int idx_input, unsigned int num_tensors, const ITensorInfo *output)
45{
46 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000047 // Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000048 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::U8, DataType::S8,
49 DataType::U16, DataType::S16, DataType::U32, DataType::S32,
50 DataType::F16, DataType::F32);
51 ARM_COMPUTE_RETURN_ERROR_ON(idx_input >= num_tensors);
52 ARM_COMPUTE_RETURN_ERROR_ON(axis > input->num_dimensions());
53 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
54
55 if(output->total_size() != 0)
56 {
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), compute_stack_shape(*input, axis, num_tensors));
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000059 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000060 }
61
62 return Status{};
63}
64
65std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, unsigned int axis, unsigned int num_tensors, ITensorInfo *output)
66{
67 // Output auto inizialitation if not yet initialized
68 auto_init_if_empty(*output, input->clone()->set_tensor_shape(compute_stack_shape(*input, axis, num_tensors)));
69
70 // Configure kernel window
71 Window win = calculate_max_window(*input);
72
73 return std::make_pair(Status{}, win);
74}
75
76inline Coordinates shift_from_axis_and_replace_coordinate(const Coordinates &id, unsigned int axis, unsigned int idx_input)
77{
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000078 constexpr int max_out_coord = 5; // Input shape is max a 4D shape, output is max 5D
79 Coordinates id_out = id;
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000080 for(unsigned int i = max_out_coord - 1; i > axis; --i)
81 {
82 id_out.set(i, id[i - 1]);
83 }
84 id_out.set(axis, idx_input);
85 return id_out;
86}
87} // namespace
88
89NEStackLayerKernel::NEStackLayerKernel()
90 : _input(nullptr), _output(nullptr), _axis(), _idx_input(), _func(nullptr)
91{
92}
93
94void NEStackLayerKernel::configure(const ITensor *input, unsigned int axis, unsigned int idx_input, unsigned int num_tensors, ITensor *output)
95{
96 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
97 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), axis, idx_input, num_tensors, output->info()));
98
99 _input = input;
100 _output = output;
101 _axis = axis;
102 _idx_input = idx_input;
103
104 switch(input->info()->element_size())
105 {
106 case 1:
107 _func = &NEStackLayerKernel::run_stack<uint8_t>;
108 break;
109 case 2:
110 _func = &NEStackLayerKernel::run_stack<uint16_t>;
111 break;
112 case 4:
113 _func = &NEStackLayerKernel::run_stack<uint32_t>;
114 break;
115 default:
116 ARM_COMPUTE_ERROR("Element size not supported");
117 break;
118 }
119
120 // Configure kernel window
121 auto win_config = validate_and_configure_window(input->info(), axis, num_tensors, output->info());
122
123 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
124 INEKernel::configure(win_config.second);
125}
126
127Status NEStackLayerKernel::validate(const ITensorInfo *input, unsigned int axis, unsigned int idx_input, unsigned int num_tensors, const ITensorInfo *output)
128{
129 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, axis, idx_input, num_tensors, output));
130 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), axis, num_tensors, output->clone().get()).first);
131 return Status{};
132}
133
134void NEStackLayerKernel::run(const Window &window, const ThreadInfo &info)
135{
136 ARM_COMPUTE_UNUSED(info);
137 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
138 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
139
140 if(_func != nullptr)
141 {
142 (this->*_func)(window);
143 }
144}
145
146template <typename T>
147void NEStackLayerKernel::run_stack(const Window &window)
148{
149 Window window_out;
150 window_out.use_tensor_dimensions(_output->info()->tensor_shape());
151
152 Iterator input(_input, window);
153 Iterator output(_output, window_out);
154
155 const int stride_x = _output->info()->strides_in_bytes()[0];
156 const int stride_y = _output->info()->num_dimensions() >= 1 ? _output->info()->strides_in_bytes()[1] : 0;
157 const int stride_z = _output->info()->num_dimensions() >= 2 ? _output->info()->strides_in_bytes()[2] : 0;
158 const int stride_w = _output->info()->num_dimensions() >= 3 ? _output->info()->strides_in_bytes()[3] : 0;
159 const int stride_k = _output->info()->num_dimensions() >= 4 ? _output->info()->strides_in_bytes()[4] : 0;
160
161 execute_window_loop(window, [&](const Coordinates & id)
162 {
163 Coordinates id_out = shift_from_axis_and_replace_coordinate(id, _axis, _idx_input);
164 const int idx = id_out[0] * stride_x + id_out[1] * stride_y + id_out[2] * stride_z + id_out[3] * stride_w + id_out[4] * stride_k;
165 *(reinterpret_cast<T *>(output.ptr() + idx)) = *(reinterpret_cast<const T *>(input.ptr()));
166 },
167 input);
168}