blob: 563dbd414f632a61843b32ddaf383aecaee0a278 [file] [log] [blame]
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001/*
Georgios Pinitas856f66e2021-04-22 21:13:21 +01002 * Copyright (c) 2017-2021 Arm Limited.
Isabella Gottardif07d28d2018-02-06 14:52:43 +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/CL/functions/CLGEMMConvolutionLayer.h"
25
Manuel Bottinid87aded2021-07-16 10:23:31 +010026#include "arm_compute/core/CL/CLKernelLibrary.h"
Isabella Gottardif07d28d2018-02-06 14:52:43 +000027#include "arm_compute/core/PixelValue.h"
28#include "arm_compute/core/Size2D.h"
29#include "arm_compute/core/Utils.h"
30#include "arm_compute/core/Validate.h"
Georgios Pinitas78c00902018-01-09 17:33:11 +000031#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Isabella Gottardif07d28d2018-02-06 14:52:43 +000032#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
33#include "arm_compute/runtime/CL/CLScheduler.h"
Manuel Bottinid87aded2021-07-16 10:23:31 +010034#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas19884632021-08-16 12:38:54 +010035#include "src/runtime/gpu/cl/operators/ClGemmConv2d.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036#include "support/Cast.h"
Isabella Gottardif07d28d2018-02-06 14:52:43 +000037
38#include <cmath>
39#include <memory>
40#include <tuple>
41
Michalis Spyroub27e13a2019-09-27 11:04:27 +010042namespace arm_compute
43{
Georgios Pinitas78c00902018-01-09 17:33:11 +000044using namespace arm_compute::misc::shape_calculator;
Michalis Spyroub27e13a2019-09-27 11:04:27 +010045using namespace arm_compute::utils::cast;
Manuel Bottinid87aded2021-07-16 10:23:31 +010046using namespace arm_compute::experimental;
Isabella Gottardif07d28d2018-02-06 14:52:43 +000047
Manuel Bottinid87aded2021-07-16 10:23:31 +010048struct CLGEMMConvolutionLayer::Impl
Isabella Gottardif07d28d2018-02-06 14:52:43 +000049{
Georgios Pinitas19884632021-08-16 12:38:54 +010050 const ITensor *weights{ nullptr };
51 std::unique_ptr<opencl::ClGemmConv2d> op{ nullptr };
52 ITensorPack run_pack{};
53 ITensorPack prep_pack{};
54 MemoryGroup memory_group{};
55 IWeightsManager *weights_manager{ nullptr };
56 MemoryRequirements aux_mem_req{};
57 WorkspaceData<CLTensor> workspace_tensors{};
58 bool is_prepared{ false };
Manuel Bottinid87aded2021-07-16 10:23:31 +010059};
Isabella Gottardif07d28d2018-02-06 14:52:43 +000060
Michalis Spyroub27e13a2019-09-27 11:04:27 +010061CLGEMMConvolutionLayer::CLGEMMConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Manuel Bottinid87aded2021-07-16 10:23:31 +010062 : _impl(std::make_unique<Impl>())
Isabella Gottardif07d28d2018-02-06 14:52:43 +000063{
Manuel Bottinid87aded2021-07-16 10:23:31 +010064 _impl->memory_group = MemoryGroup(memory_manager);
65 _impl->weights_manager = weights_manager;
Isabella Gottardif07d28d2018-02-06 14:52:43 +000066}
67
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010068CLGEMMConvolutionLayer::~CLGEMMConvolutionLayer() = default;
69
Alex Gilday7da29b62018-03-23 14:16:00 +000070void CLGEMMConvolutionLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010071 const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
Isabella Gottardif07d28d2018-02-06 14:52:43 +000072{
Manuel Bottini2b84be52020-04-08 10:15:51 +010073 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, weights_info, dilation, act_info, num_groups);
74}
75
76void CLGEMMConvolutionLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
77 const PadStrideInfo &conv_info,
78 const WeightsInfo &weights_info, const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
79{
Isabella Gottardif07d28d2018-02-06 14:52:43 +000080 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Manuel Bottinid87aded2021-07-16 10:23:31 +010081 _impl->weights = weights;
Georgios Pinitas19884632021-08-16 12:38:54 +010082 _impl->op = std::make_unique<opencl::ClGemmConv2d>();
Manuel Bottinid87aded2021-07-16 10:23:31 +010083 const Conv2dInfo conv2d_info = Conv2dInfo(conv_info, dilation, act_info, false, num_groups);
84 _impl->op->configure(compile_context, input->info(), weights->info(), (biases != nullptr ? biases->info() : nullptr), output->info(), conv2d_info, weights_info);
Georgios Pinitas78c00902018-01-09 17:33:11 +000085
Manuel Bottinid87aded2021-07-16 10:23:31 +010086 _impl->run_pack =
Gian Marco Iodicef3622be2019-07-29 14:27:16 +010087 {
Manuel Bottinid87aded2021-07-16 10:23:31 +010088 { TensorType::ACL_SRC_0, input },
89 { TensorType::ACL_SRC_1, weights },
90 { TensorType::ACL_SRC_2, biases },
91 { TensorType::ACL_DST, output }
92 };
93 _impl->prep_pack =
Gian Marco Iodicef3622be2019-07-29 14:27:16 +010094 {
Manuel Bottinid87aded2021-07-16 10:23:31 +010095 { TensorType::ACL_SRC_1, weights },
96 { TensorType::ACL_SRC_2, biases },
97 };
98 _impl->aux_mem_req = _impl->op->workspace();
99 _impl->workspace_tensors = manage_workspace<CLTensor>(_impl->aux_mem_req, _impl->memory_group, _impl->run_pack, _impl->prep_pack);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000100}
101
102Status CLGEMMConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100103 const WeightsInfo &weights_info, const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000104{
Manuel Bottinid87aded2021-07-16 10:23:31 +0100105 const Conv2dInfo conv2d_info = Conv2dInfo(conv_info, dilation, act_info, false, num_groups);
Georgios Pinitas19884632021-08-16 12:38:54 +0100106 return opencl::ClGemmConv2d::validate(input, weights, biases, output, conv2d_info, weights_info);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000107}
108
109void CLGEMMConvolutionLayer::run()
110{
Georgios Pinitase0437672018-05-02 14:07:55 +0100111 prepare();
Manuel Bottinid87aded2021-07-16 10:23:31 +0100112 MemoryGroupResourceScope scope_mg(_impl->memory_group);
113 _impl->op->run(_impl->run_pack);
Georgios Pinitase0437672018-05-02 14:07:55 +0100114}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100115
Georgios Pinitase0437672018-05-02 14:07:55 +0100116void CLGEMMConvolutionLayer::prepare()
117{
Manuel Bottinid87aded2021-07-16 10:23:31 +0100118 if(!_impl->is_prepared)
Georgios Pinitase0437672018-05-02 14:07:55 +0100119 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100120 _impl->op->prepare(_impl->prep_pack);
121 auto has_reshape = std::find_if(_impl->aux_mem_req.begin(),
122 _impl->aux_mem_req.end(),
123 [](const MemoryInfo & m) -> bool { return m.lifetime == MemoryLifetime::Persistent; });
124
125 if(has_reshape != std::end(_impl->aux_mem_req))
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100126 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100127 _impl->weights->mark_as_unused();
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100128 }
129 else
130 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100131 // Pack the B matrix to be used as the underlying GEMM performs no reshapes
132 _impl->run_pack.add_const_tensor(ACL_SRC_1, _impl->weights);
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100133 }
Manuel Bottinid87aded2021-07-16 10:23:31 +0100134 release_temporaries(_impl->aux_mem_req, _impl->workspace_tensors);
135 _impl->is_prepared = true;
Georgios Pinitase0437672018-05-02 14:07:55 +0100136 }
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000137}
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100138} // namespace arm_compute