blob: 66877ebceca6d5a9dd3a7471befb4d02df9ad3b2 [file] [log] [blame]
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001/*
2 * Copyright (c) 2016-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/ClActivation.h"
Georgios Pinitasf47f7182021-01-15 09:29:50 +000025
Georgios Pinitas41648142021-08-03 08:24:00 +010026#include "src/common/IOperator.h"
27#include "src/common/utils/LegacySupport.h"
ramelg012e53f172021-09-22 10:48:25 +010028#include "src/common/utils/Log.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029#include "src/gpu/cl/ClCompileContext.h"
Georgios Pinitas41648142021-08-03 08:24:00 +010030#include "src/gpu/cl/ClContext.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010031#include "src/gpu/cl/kernels/ClActivationKernel.h"
Georgios Pinitas41648142021-08-03 08:24:00 +010032
Georgios Pinitasf47f7182021-01-15 09:29:50 +000033namespace arm_compute
34{
35namespace opencl
36{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010037void ClActivation::configure(const ClCompileContext &compile_context,
38 ITensorInfo *src,
39 ITensorInfo *dst,
40 const ActivationLayerInfo &act_info)
Georgios Pinitasf47f7182021-01-15 09:29:50 +000041{
ramelg012e53f172021-09-22 10:48:25 +010042 ARM_COMPUTE_LOG_PARAMS(src, dst, act_info);
Georgios Pinitasf47f7182021-01-15 09:29:50 +000043 auto k = std::make_unique<kernels::ClActivationKernel>();
44 k->configure(compile_context, src, dst, act_info);
45 _kernel = std::move(k);
46}
47
48Status ClActivation::validate(const ITensorInfo *src, const ITensorInfo *dst, const ActivationLayerInfo &act_info)
49{
50 return kernels::ClActivationKernel::validate(src, dst, act_info);
51}
52} // namespace opencl
Georgios Pinitas41648142021-08-03 08:24:00 +010053
54namespace gpu
55{
56namespace opencl
57{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058std::tuple<IOperator *, StatusCode> ClContext::create_activation(const AclTensorDescriptor &src,
59 const AclTensorDescriptor &dst,
60 const AclActivationDescriptor &act,
61 bool is_validate)
Georgios Pinitas41648142021-08-03 08:24:00 +010062{
63 TensorInfo src_info = detail::convert_to_legacy_tensor_info(src);
64 TensorInfo dst_info = detail::convert_to_legacy_tensor_info(dst);
65 auto info = detail::convert_to_activation_info(act);
66
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010067 if (is_validate && !bool(arm_compute::opencl::ClActivation::validate(&src_info.set_is_resizable(false),
68 &dst_info.set_is_resizable(false), info)))
Georgios Pinitas41648142021-08-03 08:24:00 +010069 {
70 return std::make_tuple(nullptr, StatusCode::UnsupportedConfig);
71 }
72
73 auto act_op = std::make_unique<arm_compute::opencl::ClActivation>();
74 act_op->configure(CLKernelLibrary::get().get_compile_context(), &src_info, &dst_info, info);
75
76 auto op = new arm_compute::IOperator(static_cast<IContext *>(this));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010077 if (op == nullptr)
Georgios Pinitas41648142021-08-03 08:24:00 +010078 {
79 ARM_COMPUTE_LOG_ERROR_ACL("Couldn't allocate internal resources");
Pablo Marquez Tello288d3cb2021-08-10 10:22:51 +010080 return std::make_tuple(nullptr, StatusCode::OutOfMemory);
Georgios Pinitas41648142021-08-03 08:24:00 +010081 }
82 op->set_internal_operator(std::move(act_op));
83
84 return std::make_tuple(op, StatusCode::Success);
85}
86} // namespace opencl
87} // namespace gpu
Georgios Pinitasf47f7182021-01-15 09:29:50 +000088} // namespace arm_compute