blob: e70dd454df05dc0e24760698f4a2a02cb603109b [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +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#ifndef __ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H__
25#define __ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H__
26
27#include "arm_compute/core/FixedPoint.h"
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010028#include "arm_compute/core/NEON/INEKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010030#ifdef ARM_COMPUTE_AARCH64_V8_2
Pablo Tello91654c42017-07-05 11:32:17 +010031#include <arm_fp16.h>
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010032#endif /* ARM_COMPUTE_AARCH64_V8_2 */
Pablo Tello91654c42017-07-05 11:32:17 +010033
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034namespace arm_compute
35{
36class ITensor;
37
38/** Interface for the activation layer kernel. */
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010039class NEActivationLayerKernel : public INEKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040{
41public:
42 /** Constructor */
43 NEActivationLayerKernel();
44 /** Prevent instances of this class from being copied (As this class contains pointers) */
45 NEActivationLayerKernel(const NEActivationLayerKernel &) = delete;
46 /** Default move constructor */
47 NEActivationLayerKernel(NEActivationLayerKernel &&) = default;
48 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 NEActivationLayerKernel &operator=(const NEActivationLayerKernel &) = delete;
50 /** Default move assignment operator */
51 NEActivationLayerKernel &operator=(NEActivationLayerKernel &&) = default;
52 /** Set the input and output tensor.
53 *
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010054 * @note If the output tensor is a nullptr, the activation function will be performed in-place
55 *
56 * @param[in, out] input Source tensor. In case of @p output tensor = nullptr, this tensor will store the result
Georgios Pinitasccc65d42017-06-27 17:39:11 +010057 * of the activation function. Data types supported: QS8/QS16/F32.
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010058 * @param[out] output Destination tensor. Data type supported: same as @p input
59 * @param[in] activation_info Activation layer information.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060 */
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010061 void configure(ITensor *input, ITensor *output, ActivationLayerInfo activation_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062
63 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +010064 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065
66private:
67 using ActivationFunction = ActivationLayerInfo::ActivationFunction;
68 /** Common signature for all the specialised @ref NEActivationLayerKernel functions
69 *
70 * @param[in] window Region on which to execute the kernel.
71 */
72 using ActivationFunctionExecutorPtr = void (NEActivationLayerKernel::*)(const Window &window);
73 /** Function to apply an activation function on a tensor.
74 *
75 * @param[in] window Region on which to execute the kernel
76 */
77 template <ActivationLayerInfo::ActivationFunction F, typename T>
78 typename std::enable_if<std::is_same<T, float>::value, void>::type activation(const Window &window);
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010079#ifdef ARM_COMPUTE_AARCH64_V8_2
Pablo Tello91654c42017-07-05 11:32:17 +010080 /** Function to apply an activation function on a tensor.
81 *
82 * @param[in] window Region on which to execute the kernel
83 */
84 template <ActivationLayerInfo::ActivationFunction F, typename T>
85 typename std::enable_if<std::is_same<T, float16_t>::value, void>::type activation(const Window &window);
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010086#endif /* ARM_COMPUTE_AARCH64_V8_2 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087 /** Function to apply an activation function on a tensor.
88 *
89 * @param[in] window Region on which to execute the kernel
90 */
91 template <ActivationLayerInfo::ActivationFunction F, typename T>
92 typename std::enable_if<std::is_same<T, qint8_t>::value, void>::type activation(const Window &window);
Georgios Pinitasccc65d42017-06-27 17:39:11 +010093 /** Function to apply an activation function on a tensor.
94 *
95 * @param[in] window Region on which to execute the kernel
96 */
97 template <ActivationLayerInfo::ActivationFunction F, typename T>
98 typename std::enable_if<std::is_same<T, qint16_t>::value, void>::type activation(const Window &window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099
100private:
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100101 ITensor *_input;
102 ITensor *_output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103 ActivationFunctionExecutorPtr _func;
104 ActivationLayerInfo _act_info;
105};
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100106} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107#endif /*__ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H__ */