blob: eb28ce0a8bea98e0335ad2d85ad9ecd360689a09 [file] [log] [blame]
giuros01fc1da132019-02-18 16:48:35 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
giuros01fc1da132019-02-18 16:48:35 +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/NEBatchToSpaceLayerKernel.h"
25
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
giuros01fc1da132019-02-18 16:48:35 +000028#include "arm_compute/core/Types.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/core/utils/misc/ShapeCalculator.h"
giuros01fc1da132019-02-18 16:48:35 +000031
32using namespace arm_compute::misc::shape_calculator;
33
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input, const ITensorInfo *block_info, const ITensorInfo *output)
39{
40 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, block_info, output);
41 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(block_info, 1, DataType::S32);
42 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
Georgios Pinitas33843562019-12-10 13:33:18 +000043 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
giuros01fc1da132019-02-18 16:48:35 +000044
45 // Validate output if initialized
46 if(output->total_size() != 0)
47 {
48 ARM_COMPUTE_RETURN_ERROR_ON(output->num_dimensions() > 4);
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
50 }
51
52 return Status{};
53}
54Status validate_arguments_static(const ITensorInfo *input, const int block_shape_x, const int block_shape_y, const ITensorInfo *output)
55{
56 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
57 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
58 ARM_COMPUTE_RETURN_ERROR_ON(block_shape_x <= 0);
59 ARM_COMPUTE_RETURN_ERROR_ON(block_shape_y <= 0);
60
61 const DataLayout data_layout = input->data_layout();
62 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
63 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_batch] % (block_shape_x * block_shape_y) != 0);
giuros01fc1da132019-02-18 16:48:35 +000064 // Validate output if initialized
65 if(output->total_size() != 0)
66 {
67 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
68 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
69 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
70 ARM_COMPUTE_RETURN_ERROR_ON(output->tensor_shape()[idx_width] != (block_shape_x * input->tensor_shape()[idx_width]));
Pablo Tello0a33a212019-04-23 12:06:19 +010071 ARM_COMPUTE_RETURN_ERROR_ON(output->tensor_shape()[idx_height] != (block_shape_y * input->tensor_shape()[idx_height]));
giuros01fc1da132019-02-18 16:48:35 +000072 ARM_COMPUTE_RETURN_ERROR_ON(output->tensor_shape()[idx_channel] != input->tensor_shape()[idx_channel]);
73 ARM_COMPUTE_RETURN_ERROR_ON(output->num_dimensions() > 4);
74 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
75 }
76
77 return Status{};
78}
79} // namespace
80
81NEBatchToSpaceLayerKernel::NEBatchToSpaceLayerKernel()
Sadik Armagan29658042020-05-11 10:35:08 +010082 : _input(nullptr), _block_shape(nullptr), _output(nullptr), _data_layout(DataLayout::UNKNOWN), _block_shape_x(), _block_shape_y()
giuros01fc1da132019-02-18 16:48:35 +000083{
84}
85
86void NEBatchToSpaceLayerKernel::configure(const ITensor *input, const ITensor *block_shape, ITensor *output)
87{
88 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
89 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), block_shape->info(), output->info()));
90
91 _input = input;
92 _block_shape = block_shape;
93 _output = output;
Sadik Armagan29658042020-05-11 10:35:08 +010094 _data_layout = input->info()->data_layout();
giuros01fc1da132019-02-18 16:48:35 +000095
96 // Configure kernel window
97 Window win = calculate_max_window(*input->info(), Steps());
98 ICPPKernel::configure(win);
99}
100
101void NEBatchToSpaceLayerKernel::configure(const ITensor *input, const int32_t block_shape_x, const int32_t block_shape_y, ITensor *output)
102{
103 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
104 TensorShape output_shape = compute_batch_to_space_shape(input->info(), block_shape_x, block_shape_y);
105 // Output auto inizialitation if not yet initialized
106 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
107
108 // Perform validation step
109 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_static(input->info(), block_shape_x, block_shape_y, output->info()));
110
111 _input = input;
112 _output = output;
113 _block_shape_x = block_shape_x;
114 _block_shape_y = block_shape_y;
Sadik Armagan29658042020-05-11 10:35:08 +0100115 _data_layout = input->info()->data_layout();
giuros01fc1da132019-02-18 16:48:35 +0000116
117 // Configure kernel window
118 Window win = calculate_max_window(*input->info(), Steps());
119 ICPPKernel::configure(win);
120}
121
122Status NEBatchToSpaceLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *block_shape, const ITensorInfo *output)
123{
124 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, block_shape, output);
125 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, block_shape, output));
126 return Status{};
127}
128
129Status NEBatchToSpaceLayerKernel::validate(const ITensorInfo *input, const int32_t block_shape_x, const int32_t block_shape_y, const ITensorInfo *output)
130{
131 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
132 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_static(input, block_shape_x, block_shape_y, output));
133 return Status{};
134}
135
136void NEBatchToSpaceLayerKernel::run(const Window &window, const ThreadInfo &info)
137{
138 ARM_COMPUTE_UNUSED(info);
139 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
140 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICPPKernel::window(), window);
141
142 if(_block_shape != nullptr)
143 {
144 // Retrieve the block shapes dynamically
145 _block_shape_x = *(reinterpret_cast<const int *>(_block_shape->ptr_to_element(0)));
146 _block_shape_y = *(reinterpret_cast<const int *>(_block_shape->ptr_to_element(1)));
147 }
148
149 const int batch_size = _input->info()->dimension(3);
150 const int r = (batch_size / (_block_shape_x * _block_shape_y));
151 const int element_size = _input->info()->element_size();
152
153 Window slice_in = window.first_slice_window_3D();
154 Window slice_out = window.first_slice_window_4D();
155
156 // The slice_out slice does not move
157 slice_out.set(Window::DimX, Window::Dimension(0, 0, 0));
158 slice_out.set(Window::DimY, Window::Dimension(0, 0, 0));
159 slice_out.set(Window::DimZ, Window::Dimension(0, 0, 0));
160 slice_out.set(3, Window::Dimension(0, 0, 0));
161
162 int batch_id = 0;
163 // Main loop for NCHW and NHWC
Sadik Armagan29658042020-05-11 10:35:08 +0100164 if(_data_layout == DataLayout::NCHW)
giuros01fc1da132019-02-18 16:48:35 +0000165 {
166 do
167 {
168 Iterator in(_input, slice_in);
169 execute_window_loop(slice_in, [&](const Coordinates & id)
170 {
171
172 const int x = id.x();
173 const int y = id.y();
174 const int z = id.z();
175
176 const int w = batch_id % r;
177 const int out_x = x * _block_shape_x + (batch_id / r) % _block_shape_x;
178 const int out_y = y * _block_shape_y + (batch_id / r) / _block_shape_x;
179 Coordinates output_coords{ out_x, out_y, z, w };
180 memcpy(_output->ptr_to_element(output_coords), in.ptr(), element_size);
181 },
182 in);
183 ++batch_id;
184 }
185 while(window.slide_window_slice_3D(slice_in));
186 }
187 else
188 {
189 do
190 {
191 Iterator in(_input, slice_in);
192 execute_window_loop(slice_in, [&](const Coordinates & id)
193 {
194
195 const int z = id.x();
196 const int x = id.y();
197 const int y = id.z();
198
199 const int w = batch_id % r;
200 const int out_x = x * _block_shape_x + (batch_id / r) % _block_shape_x;
201 const int out_y = y * _block_shape_y + (batch_id / r) / _block_shape_x;
202 Coordinates output_coords{ z, out_x, out_y, w };
203 memcpy(_output->ptr_to_element(output_coords), in.ptr(), element_size);
204 },
205 in);
206 ++batch_id;
207 }
208 while(window.slide_window_slice_3D(slice_in));
209 }
210}
211} // namespace arm_compute