blob: bff882c28b6b737bd891d4380751740cfc26e6ad [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"
33#include "support/MemorySupport.h"
steniu0127b386c2017-07-18 17:37:43 +010034
35using namespace arm_compute;
36
37CLDirectConvolutionLayer::CLDirectConvolutionLayer()
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010038 : _direct_conv_kernel(support::cpp14::make_unique<CLDirectConvolutionLayerKernel>()), _input_border_handler(support::cpp14::make_unique<CLFillBorderKernel>()), _activationlayer_function(),
39 _is_activationlayer_enabled(false)
steniu0127b386c2017-07-18 17:37:43 +010040{
41}
42
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010043CLDirectConvolutionLayer::~CLDirectConvolutionLayer() = default;
44
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000045void 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 +010046{
Manuel Bottini2b84be52020-04-08 10:15:51 +010047 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, act_info);
48}
49
50void CLDirectConvolutionLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010051 const PadStrideInfo &conv_info,
Manuel Bottini2b84be52020-04-08 10:15:51 +010052 const ActivationLayerInfo &act_info)
53{
Gian Marco Iodice1246b632017-08-16 18:38:32 +010054 // Set GPU target
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010055 _direct_conv_kernel->set_target(CLScheduler::get().target());
Gian Marco Iodice1246b632017-08-16 18:38:32 +010056
57 // Configure direct convolution
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010058 _direct_conv_kernel->configure(compile_context, input, weights, biases, output, conv_info);
steniu0127b386c2017-07-18 17:37:43 +010059
Gian Marco Iodice1246b632017-08-16 18:38:32 +010060 // Configure border handler
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +000061 PixelValue &&zero_value(0.f);
62 if(is_data_type_quantized_asymmetric(input->info()->data_type()))
63 {
Giorgio Arena3c4bf0c2020-03-02 09:49:29 +000064 zero_value = PixelValue(0, input->info()->data_type(), input->info()->quantization_info());
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +000065 }
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010066 _input_border_handler->configure(compile_context, input, _direct_conv_kernel->border_size(), BorderMode::CONSTANT, zero_value);
Georgios Pinitasc0d1c862018-03-23 15:13:15 +000067
68 // Tune kernels
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010069 CLScheduler::get().tune_kernel_static(*_direct_conv_kernel);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000070
71 _is_activationlayer_enabled = act_info.enabled();
72
73 //Configure Activation Layer
74 if(_is_activationlayer_enabled)
75 {
Manuel Bottini2b84be52020-04-08 10:15:51 +010076 _activationlayer_function.configure(compile_context, output, nullptr, act_info);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000077 }
steniu0127b386c2017-07-18 17:37:43 +010078}
79
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000080Status CLDirectConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
81 const ActivationLayerInfo &act_info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +000082{
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000083 ARM_COMPUTE_RETURN_ON_ERROR(CLDirectConvolutionLayerKernel::validate(input, weights, biases, output, conv_info, CLScheduler::get().target()));
84 if(act_info.enabled())
85 {
86 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayer::validate(output, nullptr, act_info));
87 }
88 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +000089}
90
steniu0127b386c2017-07-18 17:37:43 +010091void CLDirectConvolutionLayer::run()
92{
Gian Marco Iodice1246b632017-08-16 18:38:32 +010093 // Run border handler
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010094 CLScheduler::get().enqueue(*_input_border_handler, false);
Gian Marco Iodice1246b632017-08-16 18:38:32 +010095
96 // Run direct convolution
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010097 CLScheduler::get().enqueue(*_direct_conv_kernel);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000098
99 //Run Activation Layer
100 if(_is_activationlayer_enabled)
101 {
102 _activationlayer_function.run();
103 }
steniu0127b386c2017-07-18 17:37:43 +0100104}