blob: 6a74914ff773e41ebdb7aa6dbfe72e088ca028e0 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026#include "arm_compute/core/Helpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Validate.h"
28
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010029namespace arm_compute
30{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031namespace
32{
Giorgio Arena7c23ad02017-11-30 15:08:38 +000033TensorShape get_output_shape(const ITensorInfo *input, bool has_bias)
34{
35 TensorShape output_shape{ input->tensor_shape() };
36
37 output_shape.collapse(3);
38 const size_t tmp_dim = output_shape[0];
39 output_shape.set(0, output_shape[1]);
40 output_shape.set(1, tmp_dim + (has_bias ? 1 : 0));
41
42 return output_shape;
43}
44
45Status validate_arguments(const ITensorInfo *input, const ITensorInfo *biases, const ITensorInfo *output)
46{
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010047 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anthony Barbiereaefd002018-07-20 17:49:35 +010048 //Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010049 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Giorgio Arena7c23ad02017-11-30 15:08:38 +000050
51 if(biases != nullptr)
52 {
Isabella Gottardie6630e42018-01-18 15:50:39 +000053 ARM_COMPUTE_RETURN_ERROR_ON(is_data_type_quantized_asymmetric(input->data_type()));
Giorgio Arena7c23ad02017-11-30 15:08:38 +000054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
Giorgio Arena7c23ad02017-11-30 15:08:38 +000055 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->num_dimensions() != 1));
56 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->num_dimensions() != 2));
57 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->dimension(0) != input->tensor_shape()[3]));
58 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->dimension(0) != input->tensor_shape()[3] || biases->dimension(1) != input->tensor_shape()[4]));
59 }
60
61 // Checks performed when output is configured
62 if(output->total_size() != 0)
63 {
64 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), get_output_shape(input, biases != nullptr));
65 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000066 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Giorgio Arena7c23ad02017-11-30 15:08:38 +000067 }
68
69 return Status{};
70}
71
72std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
73{
74 Window window = calculate_max_window(*input, Steps());
75 window.set(Window::DimX, Window::Dimension(0, input->dimension(0), input->dimension(0)));
76 window.set(Window::DimY, Window::Dimension(0, input->dimension(1), input->dimension(1)));
77 window.set(Window::DimZ, Window::Dimension(0, input->dimension(2), input->dimension(2)));
78
79 // The NEConvolutionLayerWeightsReshapeKernel doesn't need padding so update_window_and_padding() can be skipped
80 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
81
82 return std::make_pair(Status{}, window);
83}
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084} // namespace
85
86NEWeightsReshapeKernel::NEWeightsReshapeKernel()
Michalis Spyroua50e7022019-04-09 14:03:17 +010087 : _input(nullptr), _bias(nullptr), _output(nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088{
89}
90
91void NEWeightsReshapeKernel::configure(const ITensor *input, const ITensor *bias, ITensor *output)
92{
Giorgio Arena7c23ad02017-11-30 15:08:38 +000093 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010095 // Output tensor auto inizialitation if not yet initialized
Giorgio Arena7c23ad02017-11-30 15:08:38 +000096 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 +010097
Giorgio Arena7c23ad02017-11-30 15:08:38 +000098 // Perform validation step
99 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(),
100 (bias != nullptr) ? bias->info() : nullptr,
101 output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102
103 _input = input;
104 _bias = bias;
105 _output = output;
106
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 // Configure kernel
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000108 auto win_config = validate_and_configure_window(input->info(), output->info());
109 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
110 INEKernel::configure(win_config.second);
111}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000113Status NEWeightsReshapeKernel::validate(const ITensorInfo *input, const ITensorInfo *biases, const ITensorInfo *output)
114{
115 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, biases, output));
116 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117
Giorgio Arena7c23ad02017-11-30 15:08:38 +0000118 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119}
120
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100121void NEWeightsReshapeKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100123 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
125 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
126
Michalis Spyroua50e7022019-04-09 14:03:17 +0100127 const unsigned int kernel_size_x = _input->info()->dimension(0);
128 const unsigned int kernel_size_y = _input->info()->dimension(1);
129 const unsigned int kernel_depth = _input->info()->dimension(2);
130 const unsigned int input_stride_x = _input->info()->strides_in_bytes().x();
131 const unsigned int input_stride_y = _input->info()->strides_in_bytes().y();
132 const unsigned int input_stride_z = _input->info()->strides_in_bytes().z();
133 const unsigned int output_stride_y = _output->info()->strides_in_bytes().y();
134
135 // Create iterators
136 Iterator in(_input, window);
137 execute_window_loop(window, [&](const Coordinates & id)
138 {
139 // Get column index
140 const int kernel_idx = id[3];
141 const int kernel_idz = id[4];
142
143 // Setup pointers
144 const uint8_t *tmp_input_ptr = in.ptr();
145 uint8_t *tmp_output_ptr = _output->ptr_to_element(Coordinates(kernel_idx, 0, kernel_idz));
146 const uint8_t *curr_input_row_ptr = tmp_input_ptr;
147 const uint8_t *curr_input_depth_ptr = tmp_input_ptr;
148
149 // Linearize volume
150 for(unsigned int d = 0; d < kernel_depth; ++d)
151 {
152 for(unsigned int j = 0; j < kernel_size_y; ++j)
153 {
154 for(unsigned int i = 0; i < kernel_size_x; ++i)
155 {
156 std::memcpy(tmp_output_ptr, tmp_input_ptr, _input->info()->element_size());
157 tmp_input_ptr += input_stride_x;
158 tmp_output_ptr += output_stride_y;
159 }
160 curr_input_row_ptr += input_stride_y;
161 tmp_input_ptr = curr_input_row_ptr;
162 }
163 curr_input_depth_ptr += input_stride_z;
164 curr_input_row_ptr = curr_input_depth_ptr;
165 tmp_input_ptr = curr_input_depth_ptr;
166 }
167
168 // Add bias
169 if(_bias != nullptr)
170 {
171 std::memcpy(tmp_output_ptr, _bias->ptr_to_element(Coordinates(kernel_idx, kernel_idz)), _input->info()->element_size());
172 }
173 },
174 in);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175}
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100176} // namespace arm_compute