blob: f3efd00bba9cba5ad1e8c3fb3244f7c3946fef14 [file] [log] [blame]
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +00001/*
2 * Copyright (c) 2021 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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/operators/ClPRelu.h"
ramelg012e53f172021-09-22 10:48:25 +010025
ramelg012e53f172021-09-22 10:48:25 +010026#include "src/common/utils/Log.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010027#include "src/gpu/cl/kernels/ClElementwiseKernel.h"
ramelg012e53f172021-09-22 10:48:25 +010028
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +000029namespace arm_compute
30{
31namespace opencl
32{
33using KernelType = kernels::ClArithmeticKernel;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034void ClPRelu::configure(const CLCompileContext &compile_context,
35 ITensorInfo *input,
36 ITensorInfo *alpha,
37 ITensorInfo *output)
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +000038{
ramelg012e53f172021-09-22 10:48:25 +010039 ARM_COMPUTE_LOG_PARAMS(input, alpha, output);
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +000040 auto k = std::make_unique<KernelType>();
41 k->configure(compile_context, ArithmeticOperation::PRELU, input, alpha, (output == nullptr ? input : output));
42 _kernel = std::move(k);
43}
44
45Status ClPRelu::validate(const ITensorInfo *input, const ITensorInfo *alpha, const ITensorInfo *output)
46{
47 return KernelType::validate(ArithmeticOperation::PRELU, input, alpha, (output == nullptr ? input : output));
48}
49
50void ClPRelu::run(ITensorPack &tensors)
51{
52 // Output tensor can be given as nullptr for in-place computation.
53 // In this case, get the input tensor and use it as the output tensor.
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 if (tensors.get_tensor(TensorType::ACL_DST) == nullptr)
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +000055 {
56 auto src_tensor = const_cast<ITensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_0));
57 ARM_COMPUTE_ERROR_ON_MSG(src_tensor == nullptr, "invalid source tensor is given for in-place computation");
58 tensors.add_tensor(TensorType::ACL_DST, src_tensor);
59 }
60 IClOperator::run(tensors);
61}
62} // namespace opencl
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010063} // namespace arm_compute