blob: 3251de4ae43e8a7f0d672f560ed1394f7c442afd [file] [log] [blame]
Pablo Tello89519332017-11-17 11:52:36 +00001/*
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/runtime/NEON/functions/NEWinogradLayer.h"
25
26#include "arm_compute/core/Utils.h"
27#include "arm_compute/core/Validate.h"
28#include "arm_compute/runtime/NEON/NEScheduler.h"
29#include "support/ToolchainSupport.h"
30
31namespace
32{
33inline Tensor4DShape internal_get_input_shape(const arm_compute::ITensor *input)
34{
35 const int in_width = input->info()->dimension(0);
36 const int in_height = input->info()->dimension(1);
37 const int in_batches = input->info()->dimension(3);
38 const int in_channels = input->info()->dimension(2);
39 return Tensor4DShape({ in_batches, in_height, in_width, in_channels });
40}
41} /* namespace */
42
43namespace arm_compute
44{
45NEWinogradLayer::NEWinogradLayer(std::shared_ptr<IMemoryManager> memory_manager)
46 : _memory_group(std::move(memory_manager)), _winograd_kernel(), _weights_workspace(), _workspace(), _kernel_storage(), _input(), _weights(), _output(), _reshaped_kernel(false), _conv()
47{
48} /* arm_compute */
49
50void NEWinogradLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info)
51{
52 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
53 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
54 ARM_COMPUTE_ERROR_ON_MSG(weights->info()->dimension(1) != 3 || weights->info()->dimension(0) != 3, "Only 3x3 kernels are supported");
55 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() > 4);
56
57 if(biases != nullptr)
58 {
59 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
60 ARM_COMPUTE_ERROR_ON(biases->info()->num_dimensions() > 1);
61 }
62
63 _weights = weights;
64 _input = input;
65 _output = output;
66
67 // Get parameters from conv_info
68 unsigned int stride_x = 0;
69 unsigned int stride_y = 0;
70 std::tie(stride_x, stride_y) = conv_info.stride();
71 ARM_COMPUTE_ERROR_ON_MSG(stride_y != 1 || stride_x != 1, "Winograd layer only supports unit strides.");
72
73 // Get convolved dimensions
74 auto padding = PADDING_VALID;
75 const int in_channels = input->info()->dimension(2);
76
77 const int out_channels = output->info()->dimension(2);
78 const int weights_width = weights->info()->dimension(0);
79 const int weights_height = weights->info()->dimension(1);
80
81 const KernelShape kernel_shape({ out_channels, weights_height, weights_width, in_channels });
82 const Tensor4DShape in_shape(internal_get_input_shape(input));
83
84 // Get the memory required to instantiate a new Winograd operator.
85 constexpr size_t kstore_alignment = 64;
Pablo Tello3d4968a2017-12-04 15:03:35 +000086 const size_t kernel_storage_per_thread = NEWinogradLayerKernel::get_kernel_storage_size(kernel_shape);
Pablo Tello89519332017-11-17 11:52:36 +000087 _kernel_storage.allocator()->init(TensorInfo(TensorShape{ (kernel_storage_per_thread + kstore_alignment - 1) }, 1, DataType::U8));
88 _memory_group.manage(&_kernel_storage);
89
90 // Get workbench size and allocate memory
91 constexpr size_t wspace_alignment = 64;
Pablo Tello3d4968a2017-12-04 15:03:35 +000092 const size_t ws_size = NEWinogradLayerKernel::get_working_space_size(in_shape, kernel_shape, padding);
Pablo Tello89519332017-11-17 11:52:36 +000093 _workspace.allocator()->init(TensorInfo(TensorShape{ (ws_size + wspace_alignment - 1) }, 1, DataType::U8));
94 _memory_group.manage(&_workspace);
95
96 // Workspace for weights transform
Pablo Tello3d4968a2017-12-04 15:03:35 +000097 const size_t weights_transform_size = NEWinogradLayerKernel::get_kernel_transform_working_size(kernel_shape);
Pablo Tello89519332017-11-17 11:52:36 +000098 _weights_workspace.allocator()->init(TensorInfo(TensorShape{ (weights_transform_size + wspace_alignment - 1) }, 1, DataType::U8));
99 _memory_group.manage(&_weights_workspace);
100
101 _kernel_storage.allocator()->allocate();
102 _workspace.allocator()->allocate();
103 _weights_workspace.allocator()->allocate();
104
105 // Create Winograd operator object
106 _conv = support::cpp14::make_unique<Winograd3x3F32>(kernel_shape, in_shape, padding, _kernel_storage.buffer());
107
108 // Configure the kernel, padding not needed so it's safe to call configure after allocare
109 _winograd_kernel.configure(output, _conv.get());
110}
111
112void NEWinogradLayer::run()
113{
114#if defined(__aarch64__)
115 _memory_group.acquire();
116 if(!_reshaped_kernel)
117 {
118 _conv->transform_weights(reinterpret_cast<const float *>(_weights->buffer()), reinterpret_cast<float *>(_weights_workspace.buffer()));
119 _reshaped_kernel = true;
120 }
121 const Tensor4DShape in_shape(internal_get_input_shape(_input));
122 auto padding = PADDING_VALID;
123
124 //Bring channels to the front as Winograd code expects the tensor to be in the format NHWC
125 _conv->nchw2nhwc(in_shape, padding, _workspace.buffer(), reinterpret_cast<const float *>(_input->buffer()));
126
127 //Get ptrs into the workspace
Pablo Tello3d4968a2017-12-04 15:03:35 +0000128 std::pair<void *, void *> nhwc_ptrs = _conv->get_nhwc_ptrs(in_shape, padding, _workspace.buffer());
Pablo Tello89519332017-11-17 11:52:36 +0000129
130 //Setup matrices ptrs and transfor the input tensor to the appropriate form before running GEMM.
131 _conv->reshape_input(in_shape, padding, nhwc_ptrs.second, _workspace.buffer());
132
133 //Run 16 GEMMs in multiple threads, each kernel runs one or more GEMMs
134 NEScheduler::get().schedule(&_winograd_kernel, Window::DimY);
135
136 //Transform the output to the appropriate form
137 _conv->reshape_output(in_shape, padding, nhwc_ptrs.first);
138
139 //Transform back to NCHW
140 _conv->nhwc2nchw(in_shape, padding, _workspace.buffer(), reinterpret_cast<float *>(_output->buffer()));
141
142 _memory_group.release();
143#else /* __aarch64__ */
144 ARM_COMPUTE_UNUSED(_winograd_kernel);
145 ARM_COMPUTE_UNUSED(_workspace);
146 ARM_COMPUTE_UNUSED(_kernel_storage);
147 ARM_COMPUTE_UNUSED(_input);
148 ARM_COMPUTE_UNUSED(_weights);
149 ARM_COMPUTE_UNUSED(_output);
150 ARM_COMPUTE_UNUSED(_reshaped_kernel);
151 ARM_COMPUTE_UNUSED(_conv);
152 ARM_COMPUTE_ERROR("Winograd only supported for aarch64, recompile with arch=arm64-v8a.");
153#endif /* __aarch64__ */
154}
155} // namespace arm_compute