blob: 1a2369c5c235c9639924d3e68c0807206899b9d4 [file] [log] [blame]
Gian Marco Iodice76335eb2022-11-17 11:03:39 +00001/*
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"
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000029
30#include "src/common/utils/Log.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010031#include "src/gpu/cl/operators/ClIndirectConv2d.h"
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000032
33namespace arm_compute
34{
35struct CLIndirectConvolutionLayer::Impl
36{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010037 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};
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000042};
43
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010044CLIndirectConvolutionLayer::CLIndirectConvolutionLayer() : _impl(std::make_unique<Impl>())
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000045{
46}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010047CLIndirectConvolutionLayer::CLIndirectConvolutionLayer(CLIndirectConvolutionLayer &&) = default;
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000048CLIndirectConvolutionLayer &CLIndirectConvolutionLayer::operator=(CLIndirectConvolutionLayer &&) = default;
49CLIndirectConvolutionLayer::~CLIndirectConvolutionLayer() = default;
50
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010051void CLIndirectConvolutionLayer::configure(ICLTensor *input,
52 const ICLTensor *weights,
53 const ICLTensor *biases,
54 ICLTensor *output,
55 const PadStrideInfo &conv_info,
56 const ActivationLayerInfo &act_info)
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000057{
58 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, act_info);
59}
60
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061void CLIndirectConvolutionLayer::configure(const CLCompileContext &compile_context,
62 ICLTensor *input,
63 const ICLTensor *weights,
64 const ICLTensor *biases,
65 ICLTensor *output,
66 const PadStrideInfo &conv_info,
67 const ActivationLayerInfo &act_info)
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000068{
69 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
70 ARM_COMPUTE_LOG_PARAMS(input, weights, biases, output, conv_info, act_info);
71
72 _impl->src = input;
73 _impl->weights = weights;
74 _impl->biases = biases;
75 _impl->dst = output;
76 _impl->op = std::make_unique<opencl::ClIndirectConv2d>();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010077 _impl->op->configure(compile_context, input->info(), weights->info(),
78 (biases != nullptr) ? biases->info() : nullptr, output->info(), conv_info, act_info);
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000079}
80
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010081Status CLIndirectConvolutionLayer::validate(const ITensorInfo *input,
82 const ITensorInfo *weights,
83 const ITensorInfo *biases,
84 const ITensorInfo *output,
85 const PadStrideInfo &conv_info,
Gian Marco Iodice76335eb2022-11-17 11:03:39 +000086 const ActivationLayerInfo &act_info)
87{
88 return opencl::ClIndirectConv2d::validate(input, weights, biases, output, conv_info, act_info);
89}
90
91void CLIndirectConvolutionLayer::run()
92{
93 ITensorPack pack;
94 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
95 pack.add_tensor(TensorType::ACL_SRC_1, _impl->weights);
96 pack.add_tensor(TensorType::ACL_SRC_2, _impl->biases);
97 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
98 _impl->op->run(pack);
99}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100} // namespace arm_compute