blob: 24a603e8c36a8666178bc0692f0f75073dcd0cd5 [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
28namespace arm_compute
29{
30namespace opencl
31{
32void ClRsqrt::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
33{
34 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
35 k->configure(compile_context, src, dst, ElementWiseUnary::RSQRT);
36 _kernel = std::move(k);
37}
38
39Status ClRsqrt::validate(const ITensorInfo *src, const ITensorInfo *dst)
40{
41 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::RSQRT);
42}
43
44void ClExp::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
45{
46 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
47 k->configure(compile_context, src, dst, ElementWiseUnary::EXP);
48 _kernel = std::move(k);
49}
50
51Status ClExp::validate(const ITensorInfo *src, const ITensorInfo *dst)
52{
53 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::EXP);
54}
55
56void ClNeg::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
57{
58 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
59 k->configure(compile_context, src, dst, ElementWiseUnary::NEG);
60 _kernel = std::move(k);
61}
62
63Status ClNeg::validate(const ITensorInfo *src, const ITensorInfo *dst)
64{
65 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::NEG);
66}
67
68void ClSin::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
69{
70 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
71 k->configure(compile_context, src, dst, ElementWiseUnary::SIN);
72 _kernel = std::move(k);
73}
74
75Status ClSin::validate(const ITensorInfo *src, const ITensorInfo *dst)
76{
77 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::SIN);
78}
79
80void ClAbs::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
81{
82 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
83 k->configure(compile_context, src, dst, ElementWiseUnary::ABS);
84 _kernel = std::move(k);
85}
86
87Status ClAbs::validate(const ITensorInfo *src, const ITensorInfo *dst)
88{
89 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::ABS);
90}
91
92void ClLog::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
93{
94 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
95 k->configure(compile_context, src, dst, ElementWiseUnary::LOG);
96 _kernel = std::move(k);
97}
98
99Status ClLog::validate(const ITensorInfo *src, const ITensorInfo *dst)
100{
101 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::LOG);
102}
103
104void ClRound::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
105{
106 auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
107 k->configure(compile_context, src, dst, ElementWiseUnary::ROUND);
108 _kernel = std::move(k);
109}
110
111Status ClRound::validate(const ITensorInfo *src, const ITensorInfo *dst)
112{
113 return kernels::ClElementWiseUnaryKernel::validate(src, dst, ElementWiseUnary::ROUND);
114}
115} // namespace opencl
116} // namespace arm_compute