blob: 4f52bf6279ed6f7cc918c9413c693e82ca4844c0 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 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/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{
37template <typename T>
38void weights_reshape(const ITensor *input, const ITensor *bias, ITensor *output, const Window &window)
39{
Gian Marco Iodice7b06cde2017-06-21 08:54:02 +010040 const unsigned int kernel_size_x = input->info()->dimension(0);
41 const unsigned int kernel_size_y = input->info()->dimension(1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042 const unsigned int kernel_depth = input->info()->dimension(2);
43 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));
70 tmp_input_ptr += input_stride_x;
71 tmp_output_ptr += output_stride_y;
72 }
73 curr_input_row_ptr += input_stride_y;
74 tmp_input_ptr = curr_input_row_ptr;
75 }
76 curr_input_depth_ptr += input_stride_z;
77 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}
89} // namespace
90
91NEWeightsReshapeKernel::NEWeightsReshapeKernel()
92 : _func(nullptr), _input(nullptr), _bias(nullptr), _output(nullptr)
93{
94}
95
96void NEWeightsReshapeKernel::configure(const ITensor *input, const ITensor *bias, ITensor *output)
97{
Pablo Tello659abc02017-06-22 16:00:16 +010098 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QS8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
100 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != input->info()->dimension(1));
101
102 const DataType dt = input->info()->data_type();
103 const int fixed_point_position = input->info()->fixed_point_position();
104
105 TensorShape output_shape{ input->info()->tensor_shape() };
106 output_shape.collapse(3);
107 const size_t tmp_dim = output_shape[0];
108 output_shape.set(0, output_shape[1]);
109 output_shape.set(1, tmp_dim + (bias != nullptr ? 1 : 0));
110
111 // Set data type and shape for output tensor if not yet configured
112 set_data_type_if_unknown(*output->info(), dt);
113 set_fixed_point_position_if_zero(*output->info(), fixed_point_position);
114
115 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
Pablo Tello659abc02017-06-22 16:00:16 +0100116 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::F16, DataType::F32, DataType::QS8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
118 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
119
120 if(bias != nullptr)
121 {
122 TensorShape bias_shape{ input->info()->tensor_shape()[3] };
123
124 // Set data type and shape for bias tensor if not yet configured
125 set_data_type_if_unknown(*bias->info(), dt);
126 set_fixed_point_position_if_zero(*bias->info(), fixed_point_position);
127 set_shape_if_empty(*bias->info(), bias_shape);
128
129 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(bias->info()->tensor_shape(), bias_shape);
Pablo Tello659abc02017-06-22 16:00:16 +0100130 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::F16, DataType::F32, DataType::QS8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
132 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
133 }
134
135 _input = input;
136 _bias = bias;
137 _output = output;
138
139 switch(_input->info()->data_type())
140 {
141 case DataType::F32:
142 {
143 _func = &weights_reshape<uint32_t>;
144 break;
145 }
Pablo Tello659abc02017-06-22 16:00:16 +0100146 case DataType::F16:
147 {
148 _func = &weights_reshape<uint16_t>;
149 break;
150 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 case DataType::QS8:
152 {
153 _func = &weights_reshape<uint8_t>;
154 break;
155 }
156 default:
157 {
158 ARM_COMPUTE_ERROR_ON("Data type not supported");
159 break;
160 }
161 }
162
163 // Configure kernel
164 Window window = calculate_max_window(*input->info(), Steps());
165 window.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _input->info()->dimension(0)));
166 window.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), _input->info()->dimension(1)));
167 window.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), _input->info()->dimension(2)));
168
169 // The NEConvolutionLayerWeightsReshapeKernel doesn't need padding so update_window_and_padding() can be skipped
170 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
171
172 INEKernel::configure(window);
173}
174
175void NEWeightsReshapeKernel::run(const Window &window)
176{
177 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
178 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
179
180 (*_func)(_input, _bias, _output, window);
181}