blob: 0aa7f8d1b531d20a474f0025bdeb2787b0881c26 [file] [log] [blame]
Gian Marco Iodiced2fab732018-03-02 11:18:12 +00001/*
2 * Copyright (c) 2018 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/CL/functions/CLWinogradConvolutionLayer.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/Utils.h"
28#include "arm_compute/core/Validate.h"
29#include "arm_compute/core/utils/misc/ShapeCalculator.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
31
32using namespace arm_compute;
33
34CLWinogradConvolutionLayer::CLWinogradConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager)
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000035 : _memory_group(memory_manager), _batched_mm(memory_manager), _input_transform(), _filter_transform(), _output_transform(), _activationlayer_function(), _input0(), _input1(), _batched_mm_output(),
36 _is_first_run(true), _is_activationlayer_enabled(false)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000037{
38}
39
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000040void CLWinogradConvolutionLayer::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000041{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000042 // Get indices for the width and height
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000043 const size_t idx_width = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::WIDTH);
44 const size_t idx_height = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
45
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000046 // Input shape
47 const TensorShape input_shape = input->info()->tensor_shape();
48
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000049 // Kernel size
50 const unsigned int kernel_w = weights->info()->tensor_shape()[idx_width];
51 const unsigned int kernel_h = weights->info()->tensor_shape()[idx_height];
52
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000053 const WinogradInfo winograd_info = WinogradInfo(Size2D(2, 2),
54 Size2D(kernel_w, kernel_h),
55 Size2D(input_shape[idx_width], input_shape[idx_height]),
56 conv_info,
57 input->info()->data_layout());
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000058
59 // Manage intermediate tensors
60 _memory_group.manage(&_input0);
61 _memory_group.manage(&_batched_mm_output);
62
63 // Do not manage _input1 as it contains the weights
64
65 // Configure input transform
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000066 _input_transform.configure(input, &_input0, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000067
68 // Configure filter transform
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000069 _filter_transform.configure(weights, &_input1, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000070
71 // Configure batched matrix multiply
72 _batched_mm.configure(&_input0, &_input1, nullptr, &_batched_mm_output, 1.0f, 0.0f, GEMMInfo(false, false, true /* Reshape weights only for the first run*/));
73
74 // Configure output transform
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000075 _output_transform.configure(&_batched_mm_output, biases, output, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000076
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000077 // Configure activation layer
78 _is_activationlayer_enabled = act_info.enabled();
79 if(_is_activationlayer_enabled)
80 {
81 _activationlayer_function.configure(output, nullptr, act_info);
82 }
83
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000084 // Allocate temporary tensors
85 _input0.allocator()->allocate();
86 _input1.allocator()->allocate();
87 _batched_mm_output.allocator()->allocate();
88}
89
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000090Status CLWinogradConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
91 const ActivationLayerInfo &act_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000092{
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000093 // Get indeces for the width and height
94 const size_t idx_width = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
95 const size_t idx_height = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
96
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000097 // Input shape
98 const TensorShape input_shape = input->tensor_shape();
99
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000100 // Kernel size
101 const unsigned int kernel_w = weights->tensor_shape()[idx_width];
102 const unsigned int kernel_h = weights->tensor_shape()[idx_height];
103
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000104 const WinogradInfo winograd_info = WinogradInfo(Size2D(2, 2),
105 Size2D(kernel_w, kernel_h),
106 Size2D(input_shape[idx_width], input_shape[idx_height]),
107 conv_info,
108 input->data_layout());
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000109
110 // Validate input transform
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000111 const TensorShape input0_shape = misc::shape_calculator::compute_winograd_input_transform_shape(*input, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000112 const TensorInfo input0 = input->clone()->set_tensor_shape(input0_shape);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000113 ARM_COMPUTE_RETURN_ON_ERROR(CLWinogradInputTransform::validate(input, &input0, winograd_info));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000114
115 // Validate filter transform
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000116 const TensorShape input1_shape = misc::shape_calculator::compute_winograd_filter_transform_shape(*weights, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000117 const TensorInfo input1 = weights->clone()->set_tensor_shape(input1_shape);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000118 ARM_COMPUTE_RETURN_ON_ERROR(CLWinogradFilterTransformKernel::validate(weights, &input1, winograd_info));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000119
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000120 // Validate batched matrix multiply
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000121 TensorShape batched_mm_output_shape = input0.tensor_shape();
122 batched_mm_output_shape[0] = input1.tensor_shape()[0];
123 const TensorInfo batched_mm_output = input0.clone()->set_tensor_shape(batched_mm_output_shape);
124 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMM::validate(&input0, &input1, nullptr, &batched_mm_output, 1.0f, 0.0f, GEMMInfo(false, false, true /* Reshape weights only for the first run*/)));
125
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000126 // Configure output transform
127 ARM_COMPUTE_RETURN_ON_ERROR(CLWinogradOutputTransformKernel::validate(&batched_mm_output, biases, output, winograd_info));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000128
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000129 // Validate Activation Layer
130 if(act_info.enabled())
131 {
132 CLActivationLayer::validate(output, nullptr, act_info);
133 }
134
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000135 return Status{};
136}
137
138void CLWinogradConvolutionLayer::run()
139{
140 if(_is_first_run)
141 {
142 // Run filter transform
143 CLScheduler::get().enqueue(_filter_transform, false);
144
145 _is_first_run = false;
146 }
147
148 _memory_group.acquire();
149
150 // Run input transform
151 _input_transform.run();
152
153 // Run batched matrix multiplication
154 _batched_mm.run();
155
156 // Run output transform
157 CLScheduler::get().enqueue(_output_transform);
158
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000159 if(_is_activationlayer_enabled)
160 {
161 _activationlayer_function.run();
162 }
163
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000164 _memory_group.release();
165}