blob: 640841e1d5e7deaaa6e8a942ba84b4d06d3e3f2d [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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 */
24#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
25
Georgios Pinitasab23dd02020-07-06 14:57:36 +010026#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/CL/kernels/CLActivationLayerKernel.h"
Michel Iwaniec00633802017-10-12 14:14:15 +010028#include "arm_compute/core/Types.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010029#include "arm_compute/runtime/CL/CLRuntimeContext.h"
Matthew Bentham92046462020-03-07 22:15:55 +000030#include "support/MemorySupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
Georgios Pinitas12833d02019-07-25 13:31:10 +010032namespace arm_compute
33{
Georgios Pinitasab23dd02020-07-06 14:57:36 +010034namespace experimental
Georgios Pinitas12833d02019-07-25 13:31:10 +010035{
Georgios Pinitasab23dd02020-07-06 14:57:36 +010036void CLActivationLayer::configure(const CLCompileContext &compile_context, ITensorInfo *input, ITensorInfo *output, ActivationLayerInfo act_info)
Manuel Bottini2b84be52020-04-08 10:15:51 +010037{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010038 auto k = arm_compute::support::cpp14::make_unique<CLActivationLayerKernel>();
Manuel Bottini2b84be52020-04-08 10:15:51 +010039 k->configure(compile_context, input, output, act_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040 _kernel = std::move(k);
41}
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000042
Georgios Pinitas631c41a2017-12-06 11:53:03 +000043Status CLActivationLayer::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000044{
45 return CLActivationLayerKernel::validate(input, output, act_info);
46}
Georgios Pinitasab23dd02020-07-06 14:57:36 +010047
48MemoryRequirements CLActivationLayer::workspace() const
49{
50 return MemoryRequirements{};
51}
52} // namespace experimental
53
54struct CLActivationLayer::Impl
55{
56 const ICLTensor *src{ nullptr };
57 ICLTensor *dst{ nullptr };
58 CLRuntimeContext *ctx{ nullptr };
59 std::unique_ptr<experimental::CLActivationLayer> op{ nullptr };
60};
61
62CLActivationLayer::CLActivationLayer(CLRuntimeContext *ctx)
63 : _impl(support::cpp14::make_unique<Impl>())
64{
65 _impl->ctx = ctx;
66}
67
68CLActivationLayer::CLActivationLayer(CLActivationLayer &&) = default;
69
70CLActivationLayer &CLActivationLayer::operator=(CLActivationLayer &&) = default;
71
72CLActivationLayer::~CLActivationLayer() = default;
73
74void CLActivationLayer::configure(ICLTensor *input, ICLTensor *output, ActivationLayerInfo act_info)
75{
76 configure(CLKernelLibrary::get().get_compile_context(), input, output, act_info);
77}
78
79void CLActivationLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, ActivationLayerInfo act_info)
80{
81 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
82
83 _impl->src = input;
84 _impl->dst = output == nullptr ? input : output;
85
86 _impl->op = arm_compute::support::cpp14::make_unique<experimental::CLActivationLayer>();
87 _impl->op->configure(compile_context, _impl->src->info(), _impl->dst->info(), act_info);
88}
89
90Status CLActivationLayer::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
91{
92 return experimental::CLActivationLayer::validate(input, output, act_info);
93}
94
95void CLActivationLayer::run()
96{
97 const InputTensorMap src{ { TensorType::ACL_SRC, _impl->src } };
98 const OutputTensorMap dst{ { TensorType::ACL_DST, _impl->dst } };
99
100 _impl->op->run(src, dst, {});
101}
Georgios Pinitas12833d02019-07-25 13:31:10 +0100102} // namespace arm_compute