Compute Library
 23.08
ClActivation.cpp
Go to the documentation of this file.
1 /*
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  */
25 
28 
29 #include "src/common/IOperator.h"
31 #include "src/common/utils/Log.h"
32 #include "src/gpu/cl/ClContext.h"
33 
34 namespace arm_compute
35 {
36 namespace opencl
37 {
39 {
41  auto k = std::make_unique<kernels::ClActivationKernel>();
42  k->configure(compile_context, src, dst, act_info);
43  _kernel = std::move(k);
44 }
45 
47 {
49 }
50 } // namespace opencl
51 
52 namespace gpu
53 {
54 namespace opencl
55 {
56 std::tuple<IOperator *, StatusCode> ClContext::create_activation(const AclTensorDescriptor &src, const AclTensorDescriptor &dst, const AclActivationDescriptor &act, bool is_validate)
57 {
61 
62  if(is_validate && !bool(arm_compute::opencl::ClActivation::validate(&src_info.set_is_resizable(false), &dst_info.set_is_resizable(false), info)))
63  {
64  return std::make_tuple(nullptr, StatusCode::UnsupportedConfig);
65  }
66 
67  auto act_op = std::make_unique<arm_compute::opencl::ClActivation>();
68  act_op->configure(CLKernelLibrary::get().get_compile_context(), &src_info, &dst_info, info);
69 
70  auto op = new arm_compute::IOperator(static_cast<IContext *>(this));
71  if(op == nullptr)
72  {
73  ARM_COMPUTE_LOG_ERROR_ACL("Couldn't allocate internal resources");
74  return std::make_tuple(nullptr, StatusCode::OutOfMemory);
75  }
76  op->set_internal_operator(std::move(act_op));
77 
78  return std::make_tuple(op, StatusCode::Success);
79 }
80 } // namespace opencl
81 } // namespace gpu
82 } // namespace arm_compute
arm_compute::test::validation::src
SimpleTensor< float > src
Definition: DFT.cpp:155
ClActivationKernel.h
arm_compute::test::validation::dst
auto dst
Definition: DFT.cpp:170
ClContext.h
ARM_COMPUTE_LOG_ERROR_ACL
#define ARM_COMPUTE_LOG_ERROR_ACL(msg)
Definition: Log.h:32
arm_compute::StatusCode::Success
@ Success
arm_compute::test::validation::k
const unsigned int k
Definition: GEMMMatrixMultiplyNative.cpp:361
arm_compute::StatusCode::UnsupportedConfig
@ UnsupportedConfig
arm_compute::CLKernelLibrary::get
static CLKernelLibrary & get()
Access the KernelLibrary singleton.
Definition: CLKernelLibrary.cpp:39
arm_compute::IContext
Context interface.
Definition: IContext.h:51
arm_compute::ActivationLayerInfo
Activation Layer Information class.
Definition: ActivationLayerInfo.h:55
arm_compute::test::validation::act_info
act_info
Definition: DirectConvolutionLayer.cpp:547
arm_compute::opencl::ClActivation::validate
static Status validate(const ITensorInfo *src, const ITensorInfo *dst, const ActivationLayerInfo &act_info)
Static function to check if given info will lead to a valid configuration.
Definition: ClActivation.cpp:46
arm_compute::CLCompileContext
CLCompileContext class.
Definition: CLCompileContext.h:204
ClCompileContext.h
arm_compute::gpu::opencl::ClContext::create_activation
std::tuple< IOperator *, StatusCode > create_activation(const AclTensorDescriptor &src, const AclTensorDescriptor &dst, const AclActivationDescriptor &act, bool is_validate) override
Definition: ClActivation.cpp:56
arm_compute::Status
Status class.
Definition: Error.h:52
LegacySupport.h
arm_compute::opencl::kernels::ClActivationKernel::validate
static Status validate(const ITensorInfo *src, const ITensorInfo *dst, const ActivationLayerInfo &act_info)
Static function to check if given info will lead to a valid configuration.
Definition: ClActivationKernel.cpp:227
ClActivation.h
arm_compute::TensorInfo::set_is_resizable
ITensorInfo & set_is_resizable(bool is_resizable) override
Set the flag whether the tensor size can be changed.
Definition: TensorInfo.h:275
IOperator.h
arm_compute::TensorInfo
Store the tensor's metadata.
Definition: TensorInfo.h:42
arm_compute::detail::convert_to_legacy_tensor_info
TensorInfo convert_to_legacy_tensor_info(const AclTensorDescriptor &desc)
Convert a descriptor to a legacy format one.
Definition: LegacySupport.cpp:92
AclTensorDescriptor
Definition: AclTypes.h:191
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::test::validation::src_info
TensorInfo src_info(src_shape, 1, data_type)
Log.h
arm_compute::StatusCode::OutOfMemory
@ OutOfMemory
arm_compute::detail::convert_to_activation_info
ActivationLayerInfo convert_to_activation_info(const AclActivationDescriptor &desc)
Convert an AclActivation descriptor to an internal one.
Definition: LegacySupport.cpp:113
arm_compute::opencl::ClActivation::configure
void configure(const ClCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const ActivationLayerInfo &activation_info)
Configure operator for a given list of arguments.
Definition: ClActivation.cpp:38
arm_compute::experimental::IOperator
Base class for all async functions.
Definition: IOperator.h:37
arm_compute::ITensorInfo
Store the tensor's metadata.
Definition: ITensorInfo.h:43
arm_compute::test::validation::info
ScaleKernelInfo info(interpolation_policy, default_border_mode, PixelValue(), sampling_policy, false)
AclActivationDescriptor
Definition: AclDescriptors.h:52
ARM_COMPUTE_LOG_PARAMS
#define ARM_COMPUTE_LOG_PARAMS(...)
Definition: Log.h:35