blob: f82845c7ad58addbe88130db915492a7ae4cfce1 [file] [log] [blame]
Pablo Tello89519332017-11-17 11:52:36 +00001/*
Pablo Tello9ceebbe2018-01-10 16:44:13 +00002 * Copyright (c) 2017-2018 ARM Limited.
Pablo Tello89519332017-11-17 11:52:36 +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/runtime/NEON/functions/NEWinogradLayer.h"
25
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000026#include "arm_compute/core/Error.h"
Pablo Tello89519332017-11-17 11:52:36 +000027#include "arm_compute/core/Utils.h"
28#include "arm_compute/core/Validate.h"
29#include "arm_compute/runtime/NEON/NEScheduler.h"
30#include "support/ToolchainSupport.h"
31
Pablo Tellof6c572c2018-02-14 12:47:30 +000032#include "arm_compute/core/NEON/kernels/NEWinogradLayerKernel.h"
33
Georgios Pinitas4074c992018-01-30 18:13:46 +000034#include "arm_compute/core/NEON/kernels/convolution/winograd/winograd_gemm.hpp"
Pablo Tellod6ca4782018-01-23 09:36:04 +000035
Pablo Tello89519332017-11-17 11:52:36 +000036namespace
37{
38inline Tensor4DShape internal_get_input_shape(const arm_compute::ITensor *input)
39{
40 const int in_width = input->info()->dimension(0);
41 const int in_height = input->info()->dimension(1);
42 const int in_batches = input->info()->dimension(3);
43 const int in_channels = input->info()->dimension(2);
44 return Tensor4DShape({ in_batches, in_height, in_width, in_channels });
45}
46} /* namespace */
47
48namespace arm_compute
49{
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000050namespace
51{
52Status validate_arguments(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info)
53{
54 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, biases);
56 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights->dimension(0) != 3 && weights->dimension(0) != 5, "Only 3 and 5 kernels are supported");
57 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
58
59 if(biases != nullptr)
60 {
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
62 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
63 }
64
65 // Get parameters from conv_info
66 unsigned int stride_x = 0;
67 unsigned int stride_y = 0;
68 std::tie(stride_x, stride_y) = conv_info.stride();
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG(stride_y != 1 || stride_x != 1, "Winograd layer only supports unit strides.");
70
71 ARM_COMPUTE_UNUSED(output);
72
73 return Status{};
74}
75} //namespace
76
Pablo Tello89519332017-11-17 11:52:36 +000077NEWinogradLayer::NEWinogradLayer(std::shared_ptr<IMemoryManager> memory_manager)
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000078 : _memory_group(std::move(memory_manager)), _batched_gemm_kernel(nullptr), _transform_input_kernel(nullptr), _transform_output_kernel(nullptr), _transform_weights_kernel(nullptr),
79 _activationlayer_function(), _permute_input(), _permute_weights(), _permute_output(), _input_workspace(), _output_workspace(), _kernel_storage(), _input_nhwc(), _output_nhwc(), _weights_hwio(),
80 _input(), _weights(), _output(), _reshaped_kernel(false), _is_activationlayer_enabled(false)
Pablo Tello89519332017-11-17 11:52:36 +000081{
82} /* arm_compute */
83
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000084void NEWinogradLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info)
Pablo Tello89519332017-11-17 11:52:36 +000085{
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000086 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, biases, output);
87 ARM_COMPUTE_UNUSED(conv_info);
88 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), weights->info(), biases->info(), output->info(), conv_info));
Pablo Tello89519332017-11-17 11:52:36 +000089
90 _weights = weights;
91 _input = input;
92 _output = output;
93
Pablo Tellof6c572c2018-02-14 12:47:30 +000094 std::unique_ptr<INEWinogradLayerBatchedGEMMKernel<float, float>> batched_gemm_kernel;
95 std::unique_ptr<INEWinogradLayerTransformInputKernel<float>> transform_input_kernel;
96 std::unique_ptr<INEWinogradLayerTransformWeightsKernel<float>> transform_weights_kernel;
97 std::unique_ptr<INEWinogradLayerTransformOutputKernel<float>> transform_output_kernel;
98
99 switch(weights->info()->dimension(0))
100 {
101 case 3:
102 {
103 batched_gemm_kernel = support::cpp14::make_unique<NEWinogradLayerBatchedGEMMKernel<float, float, 2, 2, 3, 3>>();
104 transform_input_kernel = support::cpp14::make_unique<NEWinogradLayerTransformInputKernel<float, 2, 2, 3, 3>>();
105 transform_weights_kernel = support::cpp14::make_unique<NEWinogradLayerTransformWeightsKernel<float, 2, 2, 3, 3>>();
106 transform_output_kernel = support::cpp14::make_unique<NEWinogradLayerTransformOutputKernel<float, 2, 2, 3, 3>>();
107 break;
108 }
109 case 5:
110 {
111 batched_gemm_kernel = support::cpp14::make_unique<NEWinogradLayerBatchedGEMMKernel<float, float, 2, 2, 5, 5>>();
112 transform_input_kernel = support::cpp14::make_unique<NEWinogradLayerTransformInputKernel<float, 2, 2, 5, 5>>();
113 transform_weights_kernel = support::cpp14::make_unique<NEWinogradLayerTransformWeightsKernel<float, 2, 2, 5, 5>>();
114 transform_output_kernel = support::cpp14::make_unique<NEWinogradLayerTransformOutputKernel<float, 2, 2, 5, 5>>();
115 break;
116 }
117 default:
118 {
119 ARM_COMPUTE_ERROR("Not supported.");
120 break;
121 }
122 }
123
Pablo Tello679463a2018-02-06 11:47:59 +0000124 const PaddingType use_padding_type = (conv_info.pad_left() != 0u) ? PADDING_SAME : PADDING_VALID;
125 const bool use_same_padding = use_padding_type == PADDING_SAME;
126
Pablo Tello89519332017-11-17 11:52:36 +0000127 // Get parameters from conv_info
128 unsigned int stride_x = 0;
129 unsigned int stride_y = 0;
130 std::tie(stride_x, stride_y) = conv_info.stride();
131 ARM_COMPUTE_ERROR_ON_MSG(stride_y != 1 || stride_x != 1, "Winograd layer only supports unit strides.");
132
133 // Get convolved dimensions
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000134 const int in_channels = input->info()->dimension(2);
135 const int out_channels = output->info()->dimension(2);
Pablo Tello89519332017-11-17 11:52:36 +0000136
Pablo Tello89519332017-11-17 11:52:36 +0000137 const Tensor4DShape in_shape(internal_get_input_shape(input));
Pablo Tellod6ca4782018-01-23 09:36:04 +0000138 const size_t data_type_size = input->info()->element_size();
Pablo Tello89519332017-11-17 11:52:36 +0000139 // Get the memory required to instantiate a new Winograd operator.
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000140 constexpr size_t storage_alignment = 64;
Pablo Tellof6c572c2018-02-14 12:47:30 +0000141 const size_t kernel_storage_size = transform_weights_kernel->get_weight_storage_size(out_channels, in_channels) * data_type_size;
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000142 _kernel_storage.allocator()->init(TensorInfo(TensorShape{ (kernel_storage_size + storage_alignment - 1) }, 1, DataType::U8));
Pablo Tello89519332017-11-17 11:52:36 +0000143 _kernel_storage.allocator()->allocate();
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000144 // Input storage
Pablo Tellof6c572c2018-02-14 12:47:30 +0000145 const size_t input_storage_size = transform_input_kernel->get_input_storage_size(in_shape.n_batches, in_shape.n_channels, in_shape.n_rows, in_shape.n_cols, use_same_padding) * data_type_size;
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000146 _input_workspace.allocator()->init(TensorInfo(TensorShape{ (input_storage_size + storage_alignment - 1) }, 1, DataType::U8));
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000147 _input_workspace.allocator()->allocate();
Pablo Tello89519332017-11-17 11:52:36 +0000148
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000149 // Output storage
Pablo Tellof6c572c2018-02-14 12:47:30 +0000150 const size_t output_storage_size = transform_output_kernel->get_output_storage_size(in_shape.n_batches, in_shape.n_rows, in_shape.n_cols, out_channels, use_same_padding) * data_type_size;
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000151 _output_workspace.allocator()->init(TensorInfo(TensorShape{ (output_storage_size + storage_alignment - 1) }, 1, DataType::U8));
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000152 _output_workspace.allocator()->allocate();
Pablo Tello89519332017-11-17 11:52:36 +0000153
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000154 // configure and allocate dst tensor to be used to convert from winograd domain to spatial domain when calling to reshape_output()
155 TensorInfo info(TensorShape(_output->info()->dimension(2), _output->info()->dimension(0),
156 _output->info()->dimension(1), _output->info()->dimension(3)),
157 1, _output->info()->data_type());
158 _output_nhwc.allocator()->init(info);
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000159 _output_nhwc.allocator()->allocate();
Pablo Tello02541fb2017-12-15 09:48:59 +0000160
161 // Re-order a weight tensor from [Output feature map x Input feature map x Height x Width] to [Height x Width x Input feature map x Output feature map]
Georgios Pinitas02ee4292018-02-15 17:22:36 +0000162 _permute_weights.configure(weights, &_weights_hwio, PermutationVector(3U, 2U, 0U, 1U));
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000163 _weights_hwio.allocator()->allocate();
164
Pablo Tello02541fb2017-12-15 09:48:59 +0000165 // configure the kernel to transform the input tensor from NCHW -> NHWC
166 _permute_input.configure(input, &_input_nhwc, PermutationVector(2U, 0U, 1U));
Pablo Tello02541fb2017-12-15 09:48:59 +0000167 _input_nhwc.allocator()->allocate();
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000168
Pablo Tellod6ca4782018-01-23 09:36:04 +0000169 const int weights_width = weights->info()->dimension(0);
170 const int weights_height = weights->info()->dimension(1);
171 const KernelShape kernel_shape({ out_channels, weights_height, weights_width, in_channels });
Pablo Tello52140b42018-01-30 14:48:11 +0000172
173 // Configure the InputTransform
Pablo Tellof6c572c2018-02-14 12:47:30 +0000174 const int input_matrix_stride = transform_input_kernel->get_matrix_stride(kernel_shape, in_shape, use_padding_type);
175 transform_input_kernel->configure(reinterpret_cast<float *>(_input_nhwc.buffer()), in_shape.n_batches, in_shape.n_rows, in_shape.n_cols, in_shape.n_channels, use_padding_type,
Pablo Tello52140b42018-01-30 14:48:11 +0000176 reinterpret_cast<float *>(_input_workspace.buffer()), input_matrix_stride);
177
178 // Configure WeightsTransform
Pablo Tellof6c572c2018-02-14 12:47:30 +0000179 const int kernel_matrix_stride = transform_weights_kernel->get_matrix_stride(kernel_shape);
180 transform_weights_kernel->configure(&_weights_hwio, reinterpret_cast<float *>(_kernel_storage.buffer()), kernel_matrix_stride, out_channels, in_channels);
Pablo Tello52140b42018-01-30 14:48:11 +0000181
182 // Configure OutputTransform
183 //The biases tensor has not been allocated at this point in time, the output transform will add the biases to the final result in the run() method
Pablo Tellof6c572c2018-02-14 12:47:30 +0000184 const int output_matrix_stride = transform_output_kernel->get_matrix_stride(kernel_shape, in_shape, use_padding_type);
185 const auto output_shape(transform_output_kernel->get_output_shape(kernel_shape, in_shape, use_padding_type));
Pablo Tellod6ca4782018-01-23 09:36:04 +0000186
Pablo Tellof6c572c2018-02-14 12:47:30 +0000187 transform_output_kernel->configure(biases, reinterpret_cast<float *>(_output_workspace.buffer()),
Pablo Tellod6ca4782018-01-23 09:36:04 +0000188 output_matrix_stride, reinterpret_cast<float *>(_output_nhwc.buffer()),
189 in_shape.n_batches, output_shape.n_rows, output_shape.n_cols, out_channels);
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000190
Pablo Tello52140b42018-01-30 14:48:11 +0000191 // Configure Batched GEMMs
Pablo Tellof6c572c2018-02-14 12:47:30 +0000192 const int output_tile_rows = batched_gemm_kernel->get_output_tile_rows();
193 const int output_tile_cols = batched_gemm_kernel->get_output_tile_cols();
194 const int n_block = batched_gemm_kernel->get_number_blocks();
195 const int tile_rows = iceildiv(output_shape.n_rows, output_tile_rows);
196 const int tile_cols = iceildiv(output_shape.n_cols, output_tile_cols);
197 const int m = in_shape.n_batches * tile_rows * tile_cols;
198 const int k = in_shape.n_channels;
199 const int n = out_channels;
200 const int input_matrix_row_stride = in_shape.n_channels;
201 const int kernel_matrix_row_stride = roundup(out_channels, n_block);
202 const int output_matrix_row_stride = kernel_matrix_row_stride;
203 const unsigned n_gemms = batched_gemm_kernel->get_number_gemms();
Pablo Tello52140b42018-01-30 14:48:11 +0000204
Pablo Tellof6c572c2018-02-14 12:47:30 +0000205 batched_gemm_kernel->configure(n_gemms, m, k, n,
206 input_matrix_stride, input_matrix_row_stride,
207 kernel_matrix_stride, kernel_matrix_row_stride,
208 output_matrix_stride, output_matrix_row_stride,
209 reinterpret_cast<float *>(_input_workspace.buffer()),
210 reinterpret_cast<float *>(_kernel_storage.buffer()),
211 reinterpret_cast<float *>(_output_workspace.buffer()));
Pablo Tello52140b42018-01-30 14:48:11 +0000212
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000213 // Reorder the convoluted output to ACL's ordering NCHW
214 _permute_output.configure(&_output_nhwc, _output, PermutationVector(1U, 2U, 0U));
Pablo Tellof6c572c2018-02-14 12:47:30 +0000215
216 _transform_input_kernel = std::move(transform_input_kernel);
217 _transform_weights_kernel = std::move(transform_weights_kernel);
218 _transform_output_kernel = std::move(transform_output_kernel);
219 _batched_gemm_kernel = std::move(batched_gemm_kernel);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000220
221 //Configure Activation Layer
222 _is_activationlayer_enabled = act_info.enabled();
223 if(_is_activationlayer_enabled)
224 {
225 _activationlayer_function.configure(output, nullptr, act_info);
226 }
Pablo Tello89519332017-11-17 11:52:36 +0000227}
228
229void NEWinogradLayer::run()
230{
Pablo Tello89519332017-11-17 11:52:36 +0000231 _memory_group.acquire();
232 if(!_reshaped_kernel)
233 {
Pablo Tello89519332017-11-17 11:52:36 +0000234 _reshaped_kernel = true;
Pablo Tello02541fb2017-12-15 09:48:59 +0000235 _permute_weights.run();
Pablo Tellof6c572c2018-02-14 12:47:30 +0000236 NEScheduler::get().schedule(_transform_weights_kernel.get(), Window::DimX);
Pablo Tello89519332017-11-17 11:52:36 +0000237 }
Pablo Tello89519332017-11-17 11:52:36 +0000238 //Bring channels to the front as Winograd code expects the tensor to be in the format NHWC
Pablo Tello02541fb2017-12-15 09:48:59 +0000239 _permute_input.run();
Pablo Tello679463a2018-02-06 11:47:59 +0000240
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000241 // Transform input tensor to the winograd domain
Pablo Tellof6c572c2018-02-14 12:47:30 +0000242 NEScheduler::get().schedule(_transform_input_kernel.get(), Window::DimX);
Pablo Tellod6ca4782018-01-23 09:36:04 +0000243
Pablo Tello89519332017-11-17 11:52:36 +0000244 //Run 16 GEMMs in multiple threads, each kernel runs one or more GEMMs
Pablo Tellof6c572c2018-02-14 12:47:30 +0000245 NEScheduler::get().schedule(_batched_gemm_kernel.get(), Window::DimX);
Pablo Tellod6ca4782018-01-23 09:36:04 +0000246
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000247 // Transform output tensor to the spatial domain
Pablo Tellof6c572c2018-02-14 12:47:30 +0000248 NEScheduler::get().schedule(_transform_output_kernel.get(), Window::DimX);
Pablo Tellod6ca4782018-01-23 09:36:04 +0000249
Pablo Tello02541fb2017-12-15 09:48:59 +0000250 // Reorder the convoluted output to ACL's ordering NCHW
Pablo Tello02541fb2017-12-15 09:48:59 +0000251 _permute_output.run();
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000252
253 if(_is_activationlayer_enabled)
254 {
255 _activationlayer_function.run();
256 }
257
Pablo Tello89519332017-11-17 11:52:36 +0000258 _memory_group.release();
Pablo Tello89519332017-11-17 11:52:36 +0000259}
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000260
261Status NEWinogradLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info)
262{
263 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, biases, output);
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100264 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, weights, biases, output, conv_info));
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000265
266 return Status{};
267}
268
Pablo Tello89519332017-11-17 11:52:36 +0000269} // namespace arm_compute