blob: b47be8dc33f01e6c31ec5ae3c23ce786d595f56e [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +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/graph/nodes/ConvolutionLayer.h"
25
Michalis Spyroue4720822017-10-02 17:44:52 +010026#include "arm_compute/core/Logger.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010027#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010028#include "arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h"
29#include "arm_compute/runtime/IFunction.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010030#include "arm_compute/runtime/NEON/functions/NEConvolutionLayer.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010031#include "arm_compute/runtime/NEON/functions/NEDirectConvolutionLayer.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010032#include "support/ToolchainSupport.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010033#include "utils/GraphTypePrinter.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010034#include "utils/TypePrinter.h"
35
Georgios Pinitas6f669f02017-09-26 12:32:57 +010036#include <tuple>
37#include <vector>
38
Anthony Barbier2a07e182017-08-04 18:20:27 +010039using namespace arm_compute::graph;
40
41namespace
42{
Georgios Pinitas6f669f02017-09-26 12:32:57 +010043/** Calculates the output shaped of the convolution layer
44 *
45 * @param[in] input_shape Input tensor shape
46 * @param[in] weights_shape Weights shape
47 * @param[in] conv_info Convolution information (padding, stride, etc.)
48 *
49 * @return The expected output tensor shape
50 */
51TensorShape calculate_convolution_layer_output_shape(const TensorShape &input_shape, const TensorShape &weights_shape, const PadStrideInfo &conv_info)
Anthony Barbier2a07e182017-08-04 18:20:27 +010052{
Georgios Pinitas6f669f02017-09-26 12:32:57 +010053 unsigned int output_width = 0;
54 unsigned int output_height = 0;
Anthony Barbier2a07e182017-08-04 18:20:27 +010055
Georgios Pinitas6f669f02017-09-26 12:32:57 +010056 // Get output width and height
57 std::tie(output_width, output_height) = arm_compute::scaled_dimensions(input_shape.x(), input_shape.y(), weights_shape.x(), weights_shape.y(), conv_info);
58
59 // Create output shape
60 TensorShape output_shape = input_shape;
61 output_shape.set(0, output_width);
62 output_shape.set(1, output_height);
63 output_shape.set(2, weights_shape[3]);
64
65 return output_shape;
66}
67
68// Instantiate GEMM based convolution layer
Georgios Pinitasff421f22017-10-04 16:53:58 +010069template <typename ConvolutionType, typename TensorType, TargetHint target_hint>
Georgios Pinitas6f669f02017-09-26 12:32:57 +010070std::unique_ptr<arm_compute::IFunction> instantiate_function(ITensor *input, ITensor *weights, ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info)
71{
Anthony Barbier2a07e182017-08-04 18:20:27 +010072 auto conv = arm_compute::support::cpp14::make_unique<ConvolutionType>();
73 conv->configure(
74 dynamic_cast<TensorType *>(input),
Georgios Pinitas6f669f02017-09-26 12:32:57 +010075 dynamic_cast<TensorType *>(weights),
76 dynamic_cast<TensorType *>(biases),
Anthony Barbier2a07e182017-08-04 18:20:27 +010077 dynamic_cast<TensorType *>(output),
78 conv_info, weights_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +010079 return std::move(conv);
80}
Anthony Barbier2a07e182017-08-04 18:20:27 +010081
Georgios Pinitas6f669f02017-09-26 12:32:57 +010082// Instantiate direct convolution layer
Georgios Pinitasff421f22017-10-04 16:53:58 +010083template <typename ConvolutionType, typename TensorType, TargetHint target_hint>
Georgios Pinitas6f669f02017-09-26 12:32:57 +010084std::unique_ptr<arm_compute::IFunction> instantiate_direct_function(ITensor *input, ITensor *weights, ITensor *biases, ITensor *output, const PadStrideInfo &conv_info)
85{
86 auto conv = arm_compute::support::cpp14::make_unique<ConvolutionType>();
87 conv->configure(
88 dynamic_cast<TensorType *>(input),
89 dynamic_cast<TensorType *>(weights),
90 dynamic_cast<TensorType *>(biases),
91 dynamic_cast<TensorType *>(output),
92 conv_info);
Anthony Barbier2a07e182017-08-04 18:20:27 +010093 return std::move(conv);
94}
95
Georgios Pinitasff421f22017-10-04 16:53:58 +010096template <TargetHint target_hint>
Georgios Pinitas6f669f02017-09-26 12:32:57 +010097std::unique_ptr<arm_compute::IFunction> instantiate(ITensor *input, ITensor *weights, ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info,
98 ConvolutionMethodHint conv_method);
Anthony Barbier2a07e182017-08-04 18:20:27 +010099
100template <>
Georgios Pinitasff421f22017-10-04 16:53:58 +0100101std::unique_ptr<arm_compute::IFunction> instantiate<TargetHint::OPENCL>(ITensor *input, ITensor *weights, ITensor *biases, ITensor *output, const PadStrideInfo &conv_info,
102 const WeightsInfo &weights_info,
103 ConvolutionMethodHint conv_method)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100104{
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100105 if(conv_method == ConvolutionMethodHint::GEMM)
106 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100107 return instantiate_function<arm_compute::CLConvolutionLayer, arm_compute::ICLTensor, TargetHint::OPENCL>(input, weights, biases, output, conv_info, weights_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100108 }
109 else
110 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100111 return instantiate_direct_function<arm_compute::CLDirectConvolutionLayer, arm_compute::ICLTensor, TargetHint::OPENCL>(input, weights, biases, output, conv_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100112 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100113}
114
115template <>
Georgios Pinitasff421f22017-10-04 16:53:58 +0100116std::unique_ptr<arm_compute::IFunction> instantiate<TargetHint::NEON>(ITensor *input, ITensor *weights, ITensor *biases, ITensor *output, const PadStrideInfo &conv_info,
117 const WeightsInfo &weights_info,
118 ConvolutionMethodHint conv_method)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100119{
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100120 if(conv_method == ConvolutionMethodHint::GEMM)
121 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100122 return instantiate_function<arm_compute::NEConvolutionLayer, arm_compute::ITensor, TargetHint::NEON>(input, weights, biases, output, conv_info, weights_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100123 }
124 else
125 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100126 return instantiate_direct_function<arm_compute::NEDirectConvolutionLayer, arm_compute::ITensor, TargetHint::NEON>(input, weights, biases, output, conv_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100127 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100128}
129} // namespace
130
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100131/** Grouped Convolution function */
132class GroupedConvolutionFunction final : public arm_compute::IFunction
133{
134public:
135 /** Default Constructor */
136 GroupedConvolutionFunction()
137 : _convolutions()
138 {
139 }
140 /** Default Destructor */
141 ~GroupedConvolutionFunction() final = default;
142 /** Prevent instances from being copy constructed */
143 GroupedConvolutionFunction(const GroupedConvolutionFunction &) = delete;
144 /** Prevent instances from being copy assigned */
145 GroupedConvolutionFunction &operator=(const GroupedConvolutionFunction &) = delete;
146 /** Allow instances to be move constructed */
147 GroupedConvolutionFunction(GroupedConvolutionFunction &&) noexcept = default;
148 /** Allow instances to be move assigned */
149 GroupedConvolutionFunction &operator=(GroupedConvolutionFunction &&) noexcept = default;
150 /** Adds a convolution
151 *
152 * @param convolution Convolution function to add
153 */
154 void add_convolution_function(std::unique_ptr<IFunction> convolution)
155 {
156 _convolutions.emplace_back(std::move(convolution));
157 }
158
159 // Inherited methods overriden:
160 void run() override
161 {
162 for(auto &c : _convolutions)
163 {
164 c->run();
165 }
166 }
167
168private:
169 std::vector<std::unique_ptr<IFunction>> _convolutions;
170};
171
Georgios Pinitasff421f22017-10-04 16:53:58 +0100172std::unique_ptr<arm_compute::IFunction> ConvolutionLayer::instantiate_node(GraphContext &ctx, ITensor *input, ITensor *output)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100173{
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100174 // Set weights and biases info
Anthony Barbier2a07e182017-08-04 18:20:27 +0100175 if(_weights.tensor() == nullptr)
176 {
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100177 _weights.set_info(TensorInfo(TensorShape(_conv_width, _conv_height, input->info()->dimension(2) / _num_groups, _ofm),
178 input->info()->num_channels(), input->info()->data_type(),
Anthony Barbier2a07e182017-08-04 18:20:27 +0100179 input->info()->fixed_point_position()));
180 }
181 if(_biases.tensor() == nullptr)
182 {
183 _biases.set_info(TensorInfo(TensorShape(_ofm), input->info()->num_channels(), input->info()->data_type(), input->info()->fixed_point_position()));
184 }
185
186 std::unique_ptr<arm_compute::IFunction> func;
Georgios Pinitasff421f22017-10-04 16:53:58 +0100187 _target_hint = ctx.hints().target_hint();
Georgios Pinitasff421f22017-10-04 16:53:58 +0100188 const ConvolutionMethodHint conv_method_hint = ctx.hints().convolution_method_hint();
Anthony Barbier2a07e182017-08-04 18:20:27 +0100189
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100190 // Check if the weights and biases are loaded
191 bool weights_are_loaded = _weights.tensor() != nullptr;
192 bool biases_are_loaded = _weights.tensor() != nullptr;
193
194 // Set bias and weights target
Georgios Pinitasff421f22017-10-04 16:53:58 +0100195 _weights.set_target(_target_hint);
196 _biases.set_target(_target_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100197
198 // Calculate output shape
Michalis Spyroue4720822017-10-02 17:44:52 +0100199 TensorShape output_shape = calculate_convolution_layer_output_shape(input->info()->tensor_shape(), _weights.info().tensor_shape(), _conv_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100200
201 // Output auto inizialitation if not yet initialized
Michalis Spyroue4720822017-10-02 17:44:52 +0100202 arm_compute::auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100203
204 // Create appropriate convolution function
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100205 if(_num_groups == 1)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100206 {
Michalis Spyroue4720822017-10-02 17:44:52 +0100207 func = instantiate_convolution(input, output, conv_method_hint);
208 ARM_COMPUTE_LOG("Instantiating CLConvolutionLayer");
Anthony Barbier2a07e182017-08-04 18:20:27 +0100209 }
210 else
211 {
Michalis Spyroue4720822017-10-02 17:44:52 +0100212 func = instantiate_grouped_convolution(input, output, conv_method_hint);
213 ARM_COMPUTE_LOG("Instantiating NEConvolutionLayer");
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100214 }
215
216 // Fill weights
217 if(!weights_are_loaded)
218 {
219 _weights.allocate_and_fill_if_needed();
220 }
221 // Fill biases
222 if(!biases_are_loaded)
223 {
224 _biases.allocate_and_fill_if_needed();
Anthony Barbier2a07e182017-08-04 18:20:27 +0100225 }
226
Michalis Spyroue4720822017-10-02 17:44:52 +0100227 ARM_COMPUTE_LOG(" Data Type: " << input->info()->data_type()
228 << " Input Shape: " << input->info()->tensor_shape()
229 << " Weights shape: " << _weights.info().tensor_shape()
230 << " Biases Shape: " << _biases.info().tensor_shape()
231 << " Output Shape: " << output->info()->tensor_shape()
232 << " PadStrideInfo: " << _conv_info
233 << " Groups: " << _num_groups
234 << " WeightsInfo: " << _weights_info
235 << std::endl);
236
Anthony Barbier2a07e182017-08-04 18:20:27 +0100237 return func;
238}
239
Michalis Spyroue4720822017-10-02 17:44:52 +0100240std::unique_ptr<arm_compute::IFunction> ConvolutionLayer::instantiate_convolution(ITensor *input, ITensor *output, ConvolutionMethodHint conv_method_hint)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100241{
242 std::unique_ptr<arm_compute::IFunction> func;
Georgios Pinitasff421f22017-10-04 16:53:58 +0100243 if(_target_hint == TargetHint::OPENCL)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100244 {
Michalis Spyroue4720822017-10-02 17:44:52 +0100245 func = instantiate<TargetHint::OPENCL>(input, _weights.tensor(), _biases.tensor(), output, _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100246 }
247 else
248 {
Michalis Spyroue4720822017-10-02 17:44:52 +0100249 func = instantiate<TargetHint::NEON>(input, _weights.tensor(), _biases.tensor(), output, _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100250 }
251 return func;
252}
253
Michalis Spyroue4720822017-10-02 17:44:52 +0100254std::unique_ptr<arm_compute::IFunction> ConvolutionLayer::instantiate_grouped_convolution(ITensor *input, ITensor *output, ConvolutionMethodHint conv_method_hint)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100255{
256 // Get tensor shapes
Michalis Spyroue4720822017-10-02 17:44:52 +0100257 TensorShape input_shape = input->info()->tensor_shape();
258 TensorShape output_shape = output->info()->tensor_shape();
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100259 TensorShape weights_shape = _weights.info().tensor_shape();
260 TensorShape biases_shape = _biases.info().tensor_shape();
261
262 ARM_COMPUTE_ERROR_ON_MSG((input_shape.z() % _num_groups) != 0, "Input depth not multiple of the number of groups!");
263 ARM_COMPUTE_ERROR_ON_MSG((output_shape.z() % _num_groups) != 0, "Output depth not multiple of the number of groups!");
264 ARM_COMPUTE_ERROR_ON_MSG((weights_shape[3] % _num_groups) != 0, "Number of kernels not multiple of the number of groups!");
265 ARM_COMPUTE_ERROR_ON_MSG((biases_shape.x() % _num_groups) != 0, "Biases not multiple of the number of groups!");
266
267 // Create a grouped convolution function
268 auto grouped_conv = arm_compute::support::cpp14::make_unique<GroupedConvolutionFunction>();
269
270 // Create sub-tensors vectors
271 _is = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
272 _os = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
273 _ws = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
274 _bs = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
275
276 // Calculate sub-tensor splits
277 const int input_split = input_shape.z() / _num_groups;
278 const int output_split = output_shape.z() / _num_groups;
279 const int weights_split = weights_shape[3] / _num_groups;
280 const int biases_split = biases_shape.x() / _num_groups;
281
282 // Calculate sub-tensor shapes
283 input_shape.set(2, input_split);
284 output_shape.set(2, output_split);
285 weights_shape.set(3, weights_split);
286 biases_shape.set(0, biases_split);
287
288 // Configure sub-tensors
289 for(int i = 0; i < static_cast<int>(_num_groups); ++i)
290 {
291 // Create convolution function
292 std::unique_ptr<arm_compute::IFunction> func;
293
294 // Calculate sub-tensors starting coordinates
295 Coordinates input_coord(0, 0, input_split * i);
296 Coordinates output_coord(0, 0, output_split * i);
297 Coordinates weights_coord(0, 0, 0, weights_split * i);
298 Coordinates biases_coord(biases_split * i);
299
300 // Create sub-tensors for input, output, weights and bias
Georgios Pinitasff421f22017-10-04 16:53:58 +0100301 auto hint_to_use = (_target_hint == TargetHint::OPENCL) ? TargetHint::OPENCL : TargetHint::NEON;
Michalis Spyroue4720822017-10-02 17:44:52 +0100302 _is[i] = SubTensor(input, input_shape, input_coord, hint_to_use);
303 _os[i] = SubTensor(output, output_shape, output_coord, hint_to_use);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100304 _ws[i] = SubTensor(_weights.tensor(), weights_shape, weights_coord, hint_to_use);
305 _bs[i] = SubTensor(_biases.tensor(), biases_shape, biases_coord, hint_to_use);
306
307 // Instantiate convolution function
Georgios Pinitasff421f22017-10-04 16:53:58 +0100308 if(_target_hint == TargetHint::OPENCL)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100309 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100310 func = instantiate<TargetHint::OPENCL>(_is[i].tensor(), _ws[i].tensor(), _bs[i].tensor(), _os[i].tensor(), _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100311 }
312 else
313 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100314 func = instantiate<TargetHint::NEON>(_is[i].tensor(), _ws[i].tensor(), _bs[i].tensor(), _os[i].tensor(), _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100315 }
316
317 // Add convolution function to the list of convolutions for the grouped convolution
318 grouped_conv->add_convolution_function(std::move(func));
319 }
320
321 return std::move(grouped_conv);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100322}