blob: ea87fd9592fa6abf551ae9f92ad7153799b5170e [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
2 * Copyright (c) 2017 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 */
24#include "arm_compute/graph/nodes/ActivationLayer.h"
25
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010026#include "arm_compute/graph/NodeContext.h"
27#include "arm_compute/graph/OperationRegistry.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010028
29using namespace arm_compute::graph;
30
Anthony Barbier2a07e182017-08-04 18:20:27 +010031ActivationLayer::ActivationLayer(const ActivationLayerInfo activation_info)
32 : _activation_info(activation_info)
33{
34}
35
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010036std::unique_ptr<arm_compute::IFunction> ActivationLayer::instantiate_node(GraphContext &ctx, ITensorObject *input, ITensorObject *output)
Anthony Barbier2a07e182017-08-04 18:20:27 +010037{
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010038 ARM_COMPUTE_ERROR_ON(input == nullptr || input->tensor() == nullptr);
39 ARM_COMPUTE_ERROR_ON(output == nullptr || output->tensor() == nullptr);
40
Anthony Barbier2a07e182017-08-04 18:20:27 +010041 std::unique_ptr<arm_compute::IFunction> func;
Georgios Pinitasff421f22017-10-04 16:53:58 +010042 _target_hint = ctx.hints().target_hint();
Anthony Barbier2a07e182017-08-04 18:20:27 +010043
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010044 arm_compute::ITensor *in = input->tensor();
45 arm_compute::ITensor *out = output->tensor();
46
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010047 // Create node context
48 NodeContext node_ctx("ActivationLayer");
49 node_ctx.add_input(in);
50 node_ctx.add_output(out);
51 node_ctx.add_parameter<ActivationLayerInfo>("ActivationLayerInfo", _activation_info);
Michalis Spyroue4720822017-10-02 17:44:52 +010052
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010053 // Get function
54 func = OperationRegistry::get().find_operation("ActivationLayer", _target_hint)->configure(node_ctx);
55
Anthony Barbier2a07e182017-08-04 18:20:27 +010056 return func;
57}