blob: f94d402c0536a4148dd81b4de91e17ebeb77b1f1 [file] [log] [blame]
Michele Di Giorgioc9c89052021-01-26 10:20:17 +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/ClElementwiseUnary.h"
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000025
Georgios Pinitas7891a732021-08-20 21:39:25 +010026#include "src/gpu/cl/kernels/ClElementwiseUnaryKernel.h"
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000027
ramelg012e53f172021-09-22 10:48:25 +010028#include "src/common/utils/Log.h"
29
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000030namespace arm_compute
31{
32namespace opencl
33{
34void ClRsqrt::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
35{
ramelg012e53f172021-09-22 10:48:25 +010036 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000037 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
38 k->configure(compile_context, src, dst, ElementWiseUnary::RSQRT);
39 _kernel = std::move(k);
40}
41
42Status ClRsqrt::validate(const ITensorInfo *src, const ITensorInfo *dst)
43{
44 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::RSQRT);
45}
46
47void ClExp::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
48{
ramelg016d891572021-09-29 10:05:09 +010049 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000050 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
51 k->configure(compile_context, src, dst, ElementWiseUnary::EXP);
52 _kernel = std::move(k);
53}
54
55Status ClExp::validate(const ITensorInfo *src, const ITensorInfo *dst)
56{
57 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::EXP);
58}
59
60void ClNeg::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
61{
ramelg016d891572021-09-29 10:05:09 +010062 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000063 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
64 k->configure(compile_context, src, dst, ElementWiseUnary::NEG);
65 _kernel = std::move(k);
66}
67
68Status ClNeg::validate(const ITensorInfo *src, const ITensorInfo *dst)
69{
70 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::NEG);
71}
72
73void ClSin::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
74{
ramelg016d891572021-09-29 10:05:09 +010075 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000076 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
77 k->configure(compile_context, src, dst, ElementWiseUnary::SIN);
78 _kernel = std::move(k);
79}
80
81Status ClSin::validate(const ITensorInfo *src, const ITensorInfo *dst)
82{
83 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::SIN);
84}
85
86void ClAbs::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
87{
ramelg016d891572021-09-29 10:05:09 +010088 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000089 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
90 k->configure(compile_context, src, dst, ElementWiseUnary::ABS);
91 _kernel = std::move(k);
92}
93
94Status ClAbs::validate(const ITensorInfo *src, const ITensorInfo *dst)
95{
96 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::ABS);
97}
98
99void ClLog::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
100{
ramelg016d891572021-09-29 10:05:09 +0100101 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000102 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
103 k->configure(compile_context, src, dst, ElementWiseUnary::LOG);
104 _kernel = std::move(k);
105}
106
107Status ClLog::validate(const ITensorInfo *src, const ITensorInfo *dst)
108{
109 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::LOG);
110}
111
112void ClRound::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
113{
ramelg016d891572021-09-29 10:05:09 +0100114 ARM_COMPUTE_LOG_PARAMS(src, dst);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000115 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
116 k->configure(compile_context, src, dst, ElementWiseUnary::ROUND);
117 _kernel = std::move(k);
118}
119
120Status ClRound::validate(const ITensorInfo *src, const ITensorInfo *dst)
121{
122 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::ROUND);
123}
124} // namespace opencl
125} // namespace arm_compute