blob: 0290e320851ac17c19fb3e76ab7fe206eb673eef [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Anthony Barbiere8a49832018-01-18 10:04:05 +00002 * Copyright (c) 2017-2018 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#ifndef __ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H__
25#define __ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H__
26
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010027#include "arm_compute/core/NEON/INEKernel.h"
Michel Iwaniec5dfeae62017-11-29 10:48:23 +000028#include "arm_compute/core/QAsymm8.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000030#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +010031#include <arm_fp16.h>
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000032#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
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:
Anthony Barbiere8a49832018-01-18 10:04:05 +000042 const char *name() const override
43 {
44 return "NEActivationLayerKernel";
45 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046 /** Constructor */
47 NEActivationLayerKernel();
48 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 NEActivationLayerKernel(const NEActivationLayerKernel &) = delete;
50 /** Default move constructor */
51 NEActivationLayerKernel(NEActivationLayerKernel &&) = default;
52 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 NEActivationLayerKernel &operator=(const NEActivationLayerKernel &) = delete;
54 /** Default move assignment operator */
55 NEActivationLayerKernel &operator=(NEActivationLayerKernel &&) = default;
56 /** Set the input and output tensor.
57 *
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010058 * @note If the output tensor is a nullptr, the activation function will be performed in-place
59 *
60 * @param[in, out] input Source tensor. In case of @p output tensor = nullptr, this tensor will store the result
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010061 * of the activation function. Data types supported: QASYMM8/F16/F32.
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010062 * @param[out] output Destination tensor. Data type supported: same as @p input
63 * @param[in] activation_info Activation layer information.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064 */
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010065 void configure(ITensor *input, ITensor *output, ActivationLayerInfo activation_info);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000066 /** Static function to check if given info will lead to a valid configuration of @ref NEActivationLayerKernel
67 *
68 * @param[in] input Source tensor info. In case of @p output tensor info = nullptr, this tensor will store the result
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010069 * of the activation function. Data types supported: QASYMM8/F16/F32.
Michalis Spyrouafa5d812017-11-30 14:25:57 +000070 * @param[in] output Destination tensor info. Data type supported: same as @p input
71 * @param[in] act_info Activation layer information.
72 *
73 * @return a status
74 */
75 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076
77 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +010078 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079
80private:
81 using ActivationFunction = ActivationLayerInfo::ActivationFunction;
82 /** Common signature for all the specialised @ref NEActivationLayerKernel functions
83 *
84 * @param[in] window Region on which to execute the kernel.
85 */
86 using ActivationFunctionExecutorPtr = void (NEActivationLayerKernel::*)(const Window &window);
87 /** Function to apply an activation function on a tensor.
88 *
Anthony Barbierf202e502017-11-23 18:02:04 +000089 * @param[in] window Region on which to execute the kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090 */
91 template <ActivationLayerInfo::ActivationFunction F, typename T>
92 typename std::enable_if<std::is_same<T, float>::value, void>::type activation(const Window &window);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000093#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +010094 /** Function to apply an activation function on a tensor.
95 *
Anthony Barbierf202e502017-11-23 18:02:04 +000096 * @param[in] window Region on which to execute the kernel
Pablo Tello91654c42017-07-05 11:32:17 +010097 */
98 template <ActivationLayerInfo::ActivationFunction F, typename T>
99 typename std::enable_if<std::is_same<T, float16_t>::value, void>::type activation(const Window &window);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000100#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 /** Function to apply an activation function on a tensor.
102 *
Anthony Barbierf202e502017-11-23 18:02:04 +0000103 * @param[in] window Region on which to execute the kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 */
105 template <ActivationLayerInfo::ActivationFunction F, typename T>
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000106 typename std::enable_if<std::is_same<T, qasymm8_t>::value, void>::type activation(const Window &window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107
108private:
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100109 ITensor *_input;
110 ITensor *_output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111 ActivationFunctionExecutorPtr _func;
112 ActivationLayerInfo _act_info;
113};
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100114} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115#endif /*__ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H__ */