blob: 1d44be60a024bf6cdd55787768ddfc942d1dbf21 [file] [log] [blame]
Isabella Gottardiee7c15d2018-12-17 16:15:34 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Isabella Gottardiee7c15d2018-12-17 16:15:34 +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/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
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000037using namespace arm_compute;
38using namespace arm_compute::misc::shape_calculator;
39
40namespace
41{
42Status validate_arguments(const ITensorInfo *input, unsigned int axis, unsigned int idx_input, unsigned int num_tensors, const ITensorInfo *output)
43{
44 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000045 // Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Georgios Pinitas33843562019-12-10 13:33:18 +000046 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000047 ARM_COMPUTE_RETURN_ERROR_ON(idx_input >= num_tensors);
48 ARM_COMPUTE_RETURN_ERROR_ON(axis > input->num_dimensions());
49 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
50
51 if(output->total_size() != 0)
52 {
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), compute_stack_shape(*input, axis, num_tensors));
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000055 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000056 }
57
58 return Status{};
59}
60
61std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, unsigned int axis, unsigned int num_tensors, ITensorInfo *output)
62{
63 // Output auto inizialitation if not yet initialized
64 auto_init_if_empty(*output, input->clone()->set_tensor_shape(compute_stack_shape(*input, axis, num_tensors)));
65
66 // Configure kernel window
67 Window win = calculate_max_window(*input);
68
69 return std::make_pair(Status{}, win);
70}
71
72inline Coordinates shift_from_axis_and_replace_coordinate(const Coordinates &id, unsigned int axis, unsigned int idx_input)
73{
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000074 constexpr int max_out_coord = 5; // Input shape is max a 4D shape, output is max 5D
75 Coordinates id_out = id;
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000076 for(unsigned int i = max_out_coord - 1; i > axis; --i)
77 {
78 id_out.set(i, id[i - 1]);
79 }
80 id_out.set(axis, idx_input);
81 return id_out;
82}
83} // namespace
84
85NEStackLayerKernel::NEStackLayerKernel()
Michalis Spyroua50e7022019-04-09 14:03:17 +010086 : _input(nullptr), _output(nullptr), _axis(), _idx_input()
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000087{
88}
89
90void NEStackLayerKernel::configure(const ITensor *input, unsigned int axis, unsigned int idx_input, unsigned int num_tensors, ITensor *output)
91{
92 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
93 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), axis, idx_input, num_tensors, output->info()));
94
95 _input = input;
96 _output = output;
97 _axis = axis;
98 _idx_input = idx_input;
99
Isabella Gottardiee7c15d2018-12-17 16:15:34 +0000100 // Configure kernel window
101 auto win_config = validate_and_configure_window(input->info(), axis, num_tensors, output->info());
102
103 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
104 INEKernel::configure(win_config.second);
105}
106
107Status NEStackLayerKernel::validate(const ITensorInfo *input, unsigned int axis, unsigned int idx_input, unsigned int num_tensors, const ITensorInfo *output)
108{
109 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, axis, idx_input, num_tensors, output));
110 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), axis, num_tensors, output->clone().get()).first);
111 return Status{};
112}
113
114void NEStackLayerKernel::run(const Window &window, const ThreadInfo &info)
115{
116 ARM_COMPUTE_UNUSED(info);
117 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
118 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
119
Isabella Gottardiee7c15d2018-12-17 16:15:34 +0000120 Window window_out;
121 window_out.use_tensor_dimensions(_output->info()->tensor_shape());
122
123 Iterator input(_input, window);
124 Iterator output(_output, window_out);
125
126 const int stride_x = _output->info()->strides_in_bytes()[0];
127 const int stride_y = _output->info()->num_dimensions() >= 1 ? _output->info()->strides_in_bytes()[1] : 0;
128 const int stride_z = _output->info()->num_dimensions() >= 2 ? _output->info()->strides_in_bytes()[2] : 0;
129 const int stride_w = _output->info()->num_dimensions() >= 3 ? _output->info()->strides_in_bytes()[3] : 0;
130 const int stride_k = _output->info()->num_dimensions() >= 4 ? _output->info()->strides_in_bytes()[4] : 0;
131
132 execute_window_loop(window, [&](const Coordinates & id)
133 {
Michalis Spyroua50e7022019-04-09 14:03:17 +0100134 Coordinates id_out = shift_from_axis_and_replace_coordinate(id, _axis, _idx_input);
135 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;
136 std::memcpy(output.ptr() + idx, input.ptr(), _input->info()->element_size());
Isabella Gottardiee7c15d2018-12-17 16:15:34 +0000137 },
138 input);
139}