xref: /aosp_15_r20/external/ComputeLibrary/src/runtime/CL/functions/CLIndirectConvolutionLayer.cpp (revision c217d954acce2dbc11938adb493fc0abd69584f3)
1 /*
2  * Copyright (c) 2022 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/CLIndirectConvolutionLayer.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 "src/gpu/cl/operators/ClIndirectConv2d.h"
30 
31 #include "src/common/utils/Log.h"
32 
33 namespace arm_compute
34 {
35 struct CLIndirectConvolutionLayer::Impl
36 {
37     const ICLTensor                          *src{ nullptr };
38     const ICLTensor                          *weights{ nullptr };
39     const ICLTensor                          *biases{ nullptr };
40     ICLTensor                                *dst{ nullptr };
41     std::unique_ptr<opencl::ClIndirectConv2d> op{ nullptr };
42 };
43 
CLIndirectConvolutionLayer()44 CLIndirectConvolutionLayer::CLIndirectConvolutionLayer()
45     : _impl(std::make_unique<Impl>())
46 {
47 }
48 CLIndirectConvolutionLayer::CLIndirectConvolutionLayer(CLIndirectConvolutionLayer &&) = default;
49 CLIndirectConvolutionLayer &CLIndirectConvolutionLayer::operator=(CLIndirectConvolutionLayer &&) = default;
50 CLIndirectConvolutionLayer::~CLIndirectConvolutionLayer()                                        = default;
51 
configure(ICLTensor * input,const ICLTensor * weights,const ICLTensor * biases,ICLTensor * output,const PadStrideInfo & conv_info,const ActivationLayerInfo & act_info)52 void CLIndirectConvolutionLayer::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info)
53 {
54     configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, act_info);
55 }
56 
configure(const CLCompileContext & compile_context,ICLTensor * input,const ICLTensor * weights,const ICLTensor * biases,ICLTensor * output,const PadStrideInfo & conv_info,const ActivationLayerInfo & act_info)57 void CLIndirectConvolutionLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
58                                            const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info)
59 {
60     ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
61     ARM_COMPUTE_LOG_PARAMS(input, weights, biases, output, conv_info, act_info);
62 
63     _impl->src     = input;
64     _impl->weights = weights;
65     _impl->biases  = biases;
66     _impl->dst     = output;
67     _impl->op      = std::make_unique<opencl::ClIndirectConv2d>();
68     _impl->op->configure(compile_context, input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(), conv_info, act_info);
69 }
70 
validate(const ITensorInfo * input,const ITensorInfo * weights,const ITensorInfo * biases,const ITensorInfo * output,const PadStrideInfo & conv_info,const ActivationLayerInfo & act_info)71 Status CLIndirectConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
72                                             const ActivationLayerInfo &act_info)
73 {
74     return opencl::ClIndirectConv2d::validate(input, weights, biases, output, conv_info, act_info);
75 }
76 
run()77 void CLIndirectConvolutionLayer::run()
78 {
79     ITensorPack pack;
80     pack.add_tensor(TensorType::ACL_SRC, _impl->src);
81     pack.add_tensor(TensorType::ACL_SRC_1, _impl->weights);
82     pack.add_tensor(TensorType::ACL_SRC_2, _impl->biases);
83     pack.add_tensor(TensorType::ACL_DST, _impl->dst);
84     _impl->op->run(pack);
85 }
86 }
87