blob: c30a4cd23dcdfadbd8f149771eb290e7eaf863bb [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_NESOFTMAXLAYERKERNEL_H__
25#define __ARM_COMPUTE_NESOFTMAXLAYERKERNEL_H__
26
27#include "arm_compute/core/NEON/INEKernel.h"
28#include "arm_compute/core/NEON/INESimpleKernel.h"
29
30namespace arm_compute
31{
32class ITensor;
33
34/** Interface for the identifying the max value of 1D Logits */
35class NELogits1DMaxKernel : public INESimpleKernel
36{
37public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000038 const char *name() const override
39 {
40 return "NELogits1DMaxKernel";
41 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042 /** Default constructor */
43 NELogits1DMaxKernel();
44 /** Set the input and output tensors.
45 *
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000046 * @param[in] input Source tensor. Data types supported: QASYMM8/QS8/QS16/F16/F32.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047 * @param[out] output Destination tensor. Data types supported: same as @p input
48 */
49 void configure(const ITensor *input, ITensor *output);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000050 /** Static function to check if given info will lead to a valid configuration of @ref NELogits1DMaxKernel
51 *
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000052 * @param[in] input Source tensor. Data types supported: QASYMM8/QS8/QS16/F16/F32.
Michalis Spyrouafa5d812017-11-30 14:25:57 +000053 * @param[in] output Destination tensor. Data types supported: same as @p input
54 *
55 * @return a status
56 */
57 static Status validate(const ITensorInfo *input, const ITensorInfo *output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058
59 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +010060 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 BorderSize border_size() const override;
62
63private:
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000064 using Logits1DMaxFunction = void(const ITensor &in, ITensor &out, const Window &window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065
66private:
67 Logits1DMaxFunction *_func;
68 BorderSize _border_size;
69};
70
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000071/** Interface for softmax computation for QASYMM8 with pre-computed max. */
72class NELogits1DSoftmaxKernel : public INEKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073{
74public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000075 const char *name() const override
76 {
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000077 return "NELogits1DSoftmaxKernel";
Anthony Barbiere8a49832018-01-18 10:04:05 +000078 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079 /** Default constructor */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000080 NELogits1DSoftmaxKernel();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081 /** Prevent instances of this class from being copied (As this class contains pointers) */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000082 NELogits1DSoftmaxKernel(const NELogits1DSoftmaxKernel &) = delete;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 /** Prevent instances of this class from being copied (As this class contains pointers) */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000084 NELogits1DSoftmaxKernel &operator=(const NELogits1DSoftmaxKernel &) = delete;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085 /** Allow instances of this class to be moved */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000086 NELogits1DSoftmaxKernel(NELogits1DSoftmaxKernel &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087 /** Allow instances of this class to be moved */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000088 NELogits1DSoftmaxKernel &operator=(NELogits1DSoftmaxKernel &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089 /** Default destructor */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000090 ~NELogits1DSoftmaxKernel() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091 /** Set the input and output tensors.
92 *
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000093 * @param[in] input Source tensor. Data types supported: QASYMM8/QS8/QS16/F16/F32.
94 * @param[in] max Max values tensor. Same shape as input with dimension 0 set to 1.
95 * Data types supported: same as @p input.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096 * @param[out] output Destination tensor. Data types supported: same as @p input.
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000097 * @param[in] beta A scaling factor for the exponent.
Michalis Spyrouafa5d812017-11-30 14:25:57 +000098 *
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000099 * @param tmp Auxiliary tensor. Must be type F32 and same shape as the input.
100 */
101 void configure(const ITensor *input, const ITensor *max, ITensor *output, const float beta, ITensor *tmp);
102 /** Static function to check if given info will lead to a valid configuration of @ref NELogits1DSoftmaxKernel
103 *
104 * @param[in] input Source tensor info. Data types supported: QASYMM8/QS8/QS16/F16/F32.
105 * @param[in] max Max values tensor info. Same shape as input with dimension 0 set to 1.
106 * Data types supported: same as @p input.
107 * @param[in] output Destination tensor info. Data types supported: same as @p input.
108 * @param[in] beta A scaling factor for the exponent.
109 * @param[in] tmp Tensor info of auxiliary. Must be type F32 and same shape as the input.
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000110 *
111 * @return a status
112 */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000113 static Status validate(const ITensorInfo *input, const ITensorInfo *max,
114 const ITensorInfo *output, const float beta, const ITensorInfo *tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115
116 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100117 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100118
119private:
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000120 using LogitsSoftmaxFunction = void(const ITensor &in, const ITensor &max, void *const tmp, ITensor &out, const float beta,
121 const Window &window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000123 LogitsSoftmaxFunction *_func;
124 const ITensor *_input;
125 const ITensor *_max;
126 ITensor *_output;
127 float _beta;
128 ITensor *_tmp; //Temporary. Used internally
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129};
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100130} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131#endif /*__ARM_COMPUTE_NESOFTMAXLAYERKERNEL_H__ */