blob: 259f4fcb771f60940131be6add7c6808363bba52 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Isabella Gottardie6630e42018-01-18 15:50:39 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/NEWeightsReshapeKernel.h"
25
26#include "arm_compute/core/Dimensions.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
32
33using namespace arm_compute;
34
35namespace
36{
Giorgio Arenafb629082018-08-20 18:03:27 +010037template <typename T>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038void weights_reshape(const ITensor *input, const ITensor *bias, ITensor *output, const Window &window)
39{
Giorgio Arenafb629082018-08-20 18:03:27 +010040 const unsigned int kernel_size_x = input->info()->dimension(0);
41 const unsigned int kernel_size_y = input->info()->dimension(1);
42 const unsigned int kernel_depth = input->info()->dimension(2);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043 const unsigned int input_stride_x = input->info()->strides_in_bytes().x();
44 const unsigned int input_stride_y = input->info()->strides_in_bytes().y();
45 const unsigned int input_stride_z = input->info()->strides_in_bytes().z();
46 const unsigned int output_stride_y = output->info()->strides_in_bytes().y();
47
48 // Create iterators
49 Iterator in(input, window);
50 execute_window_loop(window, [&](const Coordinates & id)
51 {
52 // Get column index
53 const int kernel_idx = id[3];
54 const int kernel_idz = id[4];
55
56 // Setup pointers
57 const uint8_t *tmp_input_ptr = in.ptr();
58 uint8_t *tmp_output_ptr = output->ptr_to_element(Coordinates(kernel_idx, 0, kernel_idz));
59 const uint8_t *curr_input_row_ptr = tmp_input_ptr;
60 const uint8_t *curr_input_depth_ptr = tmp_input_ptr;
61
62 // Linearize volume
63 for(unsigned int d = 0; d < kernel_depth; ++d)
64 {
Gian Marco Iodice7b06cde2017-06-21 08:54:02 +010065 for(unsigned int j = 0; j < kernel_size_y; ++j)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 {
Gian Marco Iodice7b06cde2017-06-21 08:54:02 +010067 for(unsigned int i = 0; i < kernel_size_x; ++i)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068 {
69 *(reinterpret_cast<T *>(tmp_output_ptr)) = *(reinterpret_cast<const T *>(tmp_input_ptr));
Giorgio Arenafb629082018-08-20 18:03:27 +010070 tmp_input_ptr += input_stride_x;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 tmp_output_ptr += output_stride_y;
72 }
Giorgio Arenafb629082018-08-20 18:03:27 +010073 curr_input_row_ptr += input_stride_y;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074 tmp_input_ptr = curr_input_row_ptr;
75 }
Giorgio Arenafb629082018-08-20 18:03:27 +010076 curr_input_depth_ptr += input_stride_z;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077 curr_input_row_ptr = curr_input_depth_ptr;
78 tmp_input_ptr = curr_input_depth_ptr;
79 }
80
81 // Add bias
82 if(bias != nullptr)
83 {
84 *(reinterpret_cast<T *>(tmp_output_ptr)) = *(reinterpret_cast<const T *>(bias->ptr_to_element(Coordinates(kernel_idx, kernel_idz))));
85 }
86 },
87 in);
88}
Giorgio Arena7c23ad02017-11-30 15:08:38 +000089
90TensorShape get_output_shape(const ITensorInfo *input, bool has_bias)
91{
92 TensorShape output_shape{ input->tensor_shape() };
93
94 output_shape.collapse(3);
95 const size_t tmp_dim = output_shape[0];
96 output_shape.set(0, output_shape[1]);
97 output_shape.set(1, tmp_dim + (has_bias ? 1 : 0));
98
99 return output_shape;
100}
101
102Status validate_arguments(const ITensorInfo *input, const ITensorInfo *biases, const ITensorInfo *output)
103{
Anthony Barbiereaefd002018-07-20 17:49:35 +0100104 //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 +0100105 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000106 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
107
108 if(biases != nullptr)
109 {
Isabella Gottardie6630e42018-01-18 15:50:39 +0000110 ARM_COMPUTE_RETURN_ERROR_ON(is_data_type_quantized_asymmetric(input->data_type()));
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000111 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000112 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->num_dimensions() != 1));
113 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->num_dimensions() != 2));
114 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->dimension(0) != input->tensor_shape()[3]));
115 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->dimension(0) != input->tensor_shape()[3] || biases->dimension(1) != input->tensor_shape()[4]));
116 }
117
118 // Checks performed when output is configured
119 if(output->total_size() != 0)
120 {
121 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), get_output_shape(input, biases != nullptr));
122 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000123 }
124
125 return Status{};
126}
127
128std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
129{
130 Window window = calculate_max_window(*input, Steps());
131 window.set(Window::DimX, Window::Dimension(0, input->dimension(0), input->dimension(0)));
132 window.set(Window::DimY, Window::Dimension(0, input->dimension(1), input->dimension(1)));
133 window.set(Window::DimZ, Window::Dimension(0, input->dimension(2), input->dimension(2)));
134
135 // The NEConvolutionLayerWeightsReshapeKernel doesn't need padding so update_window_and_padding() can be skipped
136 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
137
138 return std::make_pair(Status{}, window);
139}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140} // namespace
141
142NEWeightsReshapeKernel::NEWeightsReshapeKernel()
143 : _func(nullptr), _input(nullptr), _bias(nullptr), _output(nullptr)
144{
145}
146
147void NEWeightsReshapeKernel::configure(const ITensor *input, const ITensor *bias, ITensor *output)
148{
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000149 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +0100151 // Output tensor auto inizialitation if not yet initialized
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000152 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(get_output_shape(input->info(), (bias != nullptr))));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000154 // Perform validation step
155 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(),
156 (bias != nullptr) ? bias->info() : nullptr,
157 output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100158
159 _input = input;
160 _bias = bias;
161 _output = output;
162
Gian Marco Iodice2bbd9642017-07-04 16:46:32 +0100163 switch(_input->info()->element_size())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100164 {
Gian Marco Iodice2bbd9642017-07-04 16:46:32 +0100165 case 4:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166 {
Giorgio Arenafb629082018-08-20 18:03:27 +0100167 _func = &weights_reshape<uint32_t>;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100168 break;
169 }
Gian Marco Iodice2bbd9642017-07-04 16:46:32 +0100170 case 2:
Pablo Tello659abc02017-06-22 16:00:16 +0100171 {
Giorgio Arenafb629082018-08-20 18:03:27 +0100172 _func = &weights_reshape<uint16_t>;
Pablo Tello659abc02017-06-22 16:00:16 +0100173 break;
174 }
Gian Marco Iodice2bbd9642017-07-04 16:46:32 +0100175 case 1:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176 {
Giorgio Arenafb629082018-08-20 18:03:27 +0100177 _func = &weights_reshape<uint8_t>;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 break;
179 }
180 default:
181 {
Gian Marco Iodice2bbd9642017-07-04 16:46:32 +0100182 ARM_COMPUTE_ERROR_ON("Element size not supported");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100183 break;
184 }
185 }
186
187 // Configure kernel
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000188 auto win_config = validate_and_configure_window(input->info(), output->info());
189 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
190 INEKernel::configure(win_config.second);
191}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100192
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000193Status NEWeightsReshapeKernel::validate(const ITensorInfo *input, const ITensorInfo *biases, const ITensorInfo *output)
194{
195 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, biases, output));
196 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100197
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000198 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100199}
200
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100201void NEWeightsReshapeKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100203 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100204 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
205 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
206
207 (*_func)(_input, _bias, _output, window);
208}