blob: 49e97693e47ef8184e3ca13c8deeb9c36fab621b [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
steniu0127b386c2017-07-18 17:37:43 +01003 *
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/CLDirectConvolutionLayer.h"
25
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +000026#include "arm_compute/core/CL/ICLTensor.h"
steniu0127b386c2017-07-18 17:37:43 +010027#include "arm_compute/core/PixelValue.h"
28#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010031#include "src/core/CL/kernels/CLDirectConvolutionLayerKernel.h"
32#include "src/core/CL/kernels/CLFillBorderKernel.h"
steniu0127b386c2017-07-18 17:37:43 +010033
34using namespace arm_compute;
35
36CLDirectConvolutionLayer::CLDirectConvolutionLayer()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000037 : _direct_conv_kernel(std::make_unique<CLDirectConvolutionLayerKernel>()), _input_border_handler(std::make_unique<CLFillBorderKernel>()), _activationlayer_function(),
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010038 _is_activationlayer_enabled(false)
steniu0127b386c2017-07-18 17:37:43 +010039{
40}
41
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010042CLDirectConvolutionLayer::~CLDirectConvolutionLayer() = default;
43
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000044void CLDirectConvolutionLayer::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info)
steniu0127b386c2017-07-18 17:37:43 +010045{
Manuel Bottini2b84be52020-04-08 10:15:51 +010046 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, act_info);
47}
48
49void CLDirectConvolutionLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010050 const PadStrideInfo &conv_info,
Manuel Bottini2b84be52020-04-08 10:15:51 +010051 const ActivationLayerInfo &act_info)
52{
Gian Marco Iodice1246b632017-08-16 18:38:32 +010053 // Set GPU target
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010054 _direct_conv_kernel->set_target(CLScheduler::get().target());
Gian Marco Iodice1246b632017-08-16 18:38:32 +010055
56 // Configure direct convolution
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010057 _direct_conv_kernel->configure(compile_context, input, weights, biases, output, conv_info);
steniu0127b386c2017-07-18 17:37:43 +010058
Gian Marco Iodice1246b632017-08-16 18:38:32 +010059 // Configure border handler
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +000060 PixelValue &&zero_value(0.f);
61 if(is_data_type_quantized_asymmetric(input->info()->data_type()))
62 {
Giorgio Arena3c4bf0c2020-03-02 09:49:29 +000063 zero_value = PixelValue(0, input->info()->data_type(), input->info()->quantization_info());
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +000064 }
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010065 _input_border_handler->configure(compile_context, input, _direct_conv_kernel->border_size(), BorderMode::CONSTANT, zero_value);
Georgios Pinitasc0d1c862018-03-23 15:13:15 +000066
67 // Tune kernels
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010068 CLScheduler::get().tune_kernel_static(*_direct_conv_kernel);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000069
70 _is_activationlayer_enabled = act_info.enabled();
71
72 //Configure Activation Layer
73 if(_is_activationlayer_enabled)
74 {
Manuel Bottini2b84be52020-04-08 10:15:51 +010075 _activationlayer_function.configure(compile_context, output, nullptr, act_info);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000076 }
steniu0127b386c2017-07-18 17:37:43 +010077}
78
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000079Status CLDirectConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
80 const ActivationLayerInfo &act_info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +000081{
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000082 ARM_COMPUTE_RETURN_ON_ERROR(CLDirectConvolutionLayerKernel::validate(input, weights, biases, output, conv_info, CLScheduler::get().target()));
83 if(act_info.enabled())
84 {
85 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayer::validate(output, nullptr, act_info));
86 }
87 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +000088}
89
steniu0127b386c2017-07-18 17:37:43 +010090void CLDirectConvolutionLayer::run()
91{
Gian Marco Iodice1246b632017-08-16 18:38:32 +010092 // Run border handler
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010093 CLScheduler::get().enqueue(*_input_border_handler, false);
Gian Marco Iodice1246b632017-08-16 18:38:32 +010094
95 // Run direct convolution
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010096 CLScheduler::get().enqueue(*_direct_conv_kernel);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000097
98 //Run Activation Layer
99 if(_is_activationlayer_enabled)
100 {
101 _activationlayer_function.run();
102 }
steniu0127b386c2017-07-18 17:37:43 +0100103}