blob: 783783c6abdf0cffc50dbb814b20015982242ba2 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H
25#define ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Georgios Pinitas5a594532018-12-03 14:30:05 +000027#include "arm_compute/core/utils/misc/Traits.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010028#include "src/core/NEON/INEKernel.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{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010036// Forward declarations
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037class ITensor;
38
39/** Interface for the activation layer kernel. */
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010040class NEActivationLayerKernel : public INEKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041{
42public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000043 const char *name() const override
44 {
45 return "NEActivationLayerKernel";
46 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047 /** Constructor */
48 NEActivationLayerKernel();
49 /** Prevent instances of this class from being copied (As this class contains pointers) */
50 NEActivationLayerKernel(const NEActivationLayerKernel &) = delete;
51 /** Default move constructor */
52 NEActivationLayerKernel(NEActivationLayerKernel &&) = default;
53 /** Prevent instances of this class from being copied (As this class contains pointers) */
54 NEActivationLayerKernel &operator=(const NEActivationLayerKernel &) = delete;
55 /** Default move assignment operator */
56 NEActivationLayerKernel &operator=(NEActivationLayerKernel &&) = default;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010057 /** Default destructor */
58 ~NEActivationLayerKernel() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059 /** Set the input and output tensor.
60 *
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010061 * @note If the output tensor is a nullptr, the activation function will be performed in-place
62 *
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010063 * @param[in, out] input Source tensor info. In case of @p output tensor = nullptr, this tensor will store the result
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +000064 * of the activation function. Data types supported: QASYMM8/QASYMM8_SIGNED/QSYMM16/F16/F32.
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010065 * @param[out] output Destination tensor info. Data type supported: same as @p input
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010066 * @param[in] activation_info Activation layer information.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067 */
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010068 void configure(const ITensorInfo *input, ITensorInfo *output, ActivationLayerInfo activation_info);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000069 /** Static function to check if given info will lead to a valid configuration of @ref NEActivationLayerKernel
70 *
71 * @param[in] input Source tensor info. In case of @p output tensor info = nullptr, this tensor will store the result
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +000072 * of the activation function. Data types supported: QASYMM8/QASYMM8_SIGNED/QSYMM16/F16/F32.
Michalis Spyrouafa5d812017-11-30 14:25:57 +000073 * @param[in] output Destination tensor info. Data type supported: same as @p input
74 * @param[in] act_info Activation layer information.
75 *
76 * @return a status
77 */
78 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079
80 // Inherited methods overridden:
Georgios Pinitas0499dff2020-07-31 22:21:38 +010081 void run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082
83private:
Michalis Spyrouc4d45552020-10-19 12:41:30 +010084 ActivationLayerInfo _act_info;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085};
Gian Marco Iodice356f6432017-09-22 11:32:21 +010086} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000087#endif /*ARM_COMPUTE_NEACTIVATIONLAYERKERNEL_H */