blob: f324b1a68ce5d8563c65c1ad4482a673d9a45476 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Benthamf1aeab92023-05-30 13:35:34 +00002 * Copyright (c) 2016-2021, 2023 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/CLActivationLayer.h"
25
Georgios Pinitasab23dd02020-07-06 14:57:36 +010026#include "arm_compute/core/CL/ICLTensor.h"
Michel Iwaniec00633802017-10-12 14:14:15 +010027#include "arm_compute/core/Types.h"
Georgios Pinitasf47f7182021-01-15 09:29:50 +000028#include "arm_compute/core/Validate.h"
SiCong Li91295492023-07-21 18:16:13 +010029#include "arm_compute/function_info/ActivationLayerInfo.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010030#include "arm_compute/runtime/CL/CLRuntimeContext.h"
Georgios Pinitasf47f7182021-01-15 09:29:50 +000031#include "src/core/CL/ICLKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010032#include "src/gpu/cl/operators/ClActivation.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
Georgios Pinitas12833d02019-07-25 13:31:10 +010034namespace arm_compute
35{
Georgios Pinitasab23dd02020-07-06 14:57:36 +010036struct CLActivationLayer::Impl
37{
Georgios Pinitasf47f7182021-01-15 09:29:50 +000038 const ICLTensor *src{ nullptr };
39 ICLTensor *dst{ nullptr };
40 CLRuntimeContext *ctx{ nullptr };
41 std::unique_ptr<opencl::ClActivation> op{ nullptr };
Georgios Pinitasab23dd02020-07-06 14:57:36 +010042};
43
44CLActivationLayer::CLActivationLayer(CLRuntimeContext *ctx)
Georgios Pinitas40f51a62020-11-21 03:04:18 +000045 : _impl(std::make_unique<Impl>())
Georgios Pinitasab23dd02020-07-06 14:57:36 +010046{
47 _impl->ctx = ctx;
48}
Georgios Pinitasab23dd02020-07-06 14:57:36 +010049CLActivationLayer::CLActivationLayer(CLActivationLayer &&) = default;
Georgios Pinitasab23dd02020-07-06 14:57:36 +010050CLActivationLayer &CLActivationLayer::operator=(CLActivationLayer &&) = default;
Georgios Pinitasf47f7182021-01-15 09:29:50 +000051CLActivationLayer::~CLActivationLayer() = default;
Georgios Pinitasab23dd02020-07-06 14:57:36 +010052
53void CLActivationLayer::configure(ICLTensor *input, ICLTensor *output, ActivationLayerInfo act_info)
54{
55 configure(CLKernelLibrary::get().get_compile_context(), input, output, act_info);
56}
57
58void CLActivationLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, ActivationLayerInfo act_info)
59{
60 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
61
62 _impl->src = input;
63 _impl->dst = output == nullptr ? input : output;
64
Georgios Pinitasf47f7182021-01-15 09:29:50 +000065 _impl->op = std::make_unique<opencl::ClActivation>();
Georgios Pinitasab23dd02020-07-06 14:57:36 +010066 _impl->op->configure(compile_context, _impl->src->info(), _impl->dst->info(), act_info);
67}
68
69Status CLActivationLayer::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
70{
Georgios Pinitasf47f7182021-01-15 09:29:50 +000071 return opencl::ClActivation::validate(input, output, act_info);
Georgios Pinitasab23dd02020-07-06 14:57:36 +010072}
73
74void CLActivationLayer::run()
75{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010076 ITensorPack pack;
77 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
78 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
79 _impl->op->run(pack);
Georgios Pinitasab23dd02020-07-06 14:57:36 +010080}
Georgios Pinitas12833d02019-07-25 13:31:10 +010081} // namespace arm_compute