blob: c5c83d8b5a826ce51d97c226df657e09bc1eeb40 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sheri Zhang1f567af2020-05-05 11:47:36 +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_NESOFTMAXLAYER_H
25#define ARM_COMPUTE_NESOFTMAXLAYER_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
Manuel Bottini678d83a2019-01-07 16:05:36 +000028#include "arm_compute/core/NEON/kernels/NEFlattenLayerKernel.h"
29#include "arm_compute/core/NEON/kernels/NEReshapeLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/NEON/kernels/NESoftmaxLayerKernel.h"
31#include "arm_compute/runtime/IFunction.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010032#include "arm_compute/runtime/MemoryGroup.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/runtime/Tensor.h"
34
35namespace arm_compute
36{
37class ITensor;
38
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010039/** Basic function to compute a SoftmaxLayer and a Log SoftmaxLayer.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040 *
41 * Softmax is calculated by :
42 * @f[ out = \frac{e^{x - max(x)}}{\sum{e^{x - max(x)}}} @f]
43 *
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010044 * Log Softmax is calculated by :
45 * @f[ out = (x - max(x)) - \sum{e^{x - max(x)}} @f]
46 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047 * This function runs the following kernels:
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000048 * -# @ref NEFillBorderKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 * -# @ref NELogits1DMaxKernel
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000050 * -# @ref NELogits1DSoftmaxKernel
SiCong Lid004a7a2020-05-28 15:26:41 +010051 * And if the reduce_end_axis is not 0 or -input_num_dimensions, the function will use one of the the following kernels
52 * to reshape the input and perform softmax on the reshaped input:
53 * -# @ref NEFlattenLayerKernel
54 * -# @ref NEReshapeLayerKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055 */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010056template <bool IS_LOG = false>
57class NESoftmaxLayerGeneric : public IFunction
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058{
59public:
60 /** Constructor */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010061 NESoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Manuel Bottini678d83a2019-01-07 16:05:36 +000062 /** Prevent instances of this class from being copied (As this class contains pointers) */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010063 NESoftmaxLayerGeneric(const NESoftmaxLayerGeneric &) = delete;
Manuel Bottini678d83a2019-01-07 16:05:36 +000064 /** Default move constructor */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010065 NESoftmaxLayerGeneric(NESoftmaxLayerGeneric &&) = default;
Manuel Bottini678d83a2019-01-07 16:05:36 +000066 /** Prevent instances of this class from being copied (As this class contains pointers) */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010067 NESoftmaxLayerGeneric &operator=(const NESoftmaxLayerGeneric &) = delete;
Manuel Bottini678d83a2019-01-07 16:05:36 +000068 /** Default move assignment operator */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010069 NESoftmaxLayerGeneric &operator=(NESoftmaxLayerGeneric &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070 /** Set the input and output tensors.
71 *
SiCong Lid004a7a2020-05-28 15:26:41 +010072 * @param[in,out] input Source tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32. If the width is not a
73 * multiple of the internal processing block size, @ref NEFillBorderKernel replicates the
74 * last value of each row to the nearest multiple.
75 * @param[out] output Destination tensor. Data types supported: same as @p input.
76 * @param[in] beta (Optional) A scaling factor for the exponent.
77 * @param[in] reduce_end_axis (Optional) The last axis of the first n dimensions (inclusive)to reduce. Defaults to 0.
78 * It has the purpose of squashing together the first n dimensions till (including) the @p reduce_end_axis. For instance, given a [2x3x4x5] image,
79 * when @p reduce_end_axis is 1, the reduction will be applied to axes 0 and 1, and the Softmax op will be applied on each of the [2x3] planes of the input image.
80 * Negative index is used to specify axis from the end (e.g. -1 for the last axis).
81 * Must be in range [-input_num_dimensions, input_num_dimensions).
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082 */
SiCong Lid004a7a2020-05-28 15:26:41 +010083 void configure(ITensor *input, ITensor *output, float beta = 1.0f, int32_t reduce_end_axis = 0);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000084 /** Static function to check if given info will lead to a valid configuration of @ref NESoftmaxLayer
85 *
SiCong Lid004a7a2020-05-28 15:26:41 +010086 * @param[in] input Source tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
87 * @param[in] output Destination tensor info. Data types supported: same as @p input
88 * @param[in] beta (Optional) A scaling factor for the exponent.
89 * @param[in] reduce_end_axis (Optional) The last axis of the first n dimensions (inclusive)to reduce. Defaults to 0.
90 * It has the purpose of squashing together the first n dimensions till (including) the @p reduce_end_axis. For instance, given a [2x3x4x5] image,
91 * when @p reduce_end_axis is 1, the reduction will be applied to axes 0 and 1, and the Softmax op will be applied on each of the [2x3] planes of the input image.
92 * Negative index is used to specify axis from the end (e.g. -1 for the last axis).
93 * Must be in range [-input_num_dimensions, input_num_dimensions).
Michalis Spyrouafa5d812017-11-30 14:25:57 +000094 * @return a status
95 */
SiCong Lid004a7a2020-05-28 15:26:41 +010096 static Status validate(const ITensorInfo *input, const ITensorInfo *output, float beta = 1.0f, int32_t reduce_end_axis = 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097
98 // Inherited methods overridden:
99 void run() override;
100
101private:
Manuel Bottini678d83a2019-01-07 16:05:36 +0000102 /** Utility method to configure the kernels needed to flatten the input
103 * tensor.
104 *
105 * @note This function changes the internal state of this class. In particular,
106 * it initializes the kernel @p _flatten_kernel and the tensors @p _input_flat and
107 * @p _output_flat
108 *
SiCong Lid004a7a2020-05-28 15:26:41 +0100109 * @param[in] input Original source tensor.
110 * @param[in] output Original destination tensor.
111 * @param[in] reduce_end_axis (Optional) The last axis of the first n dimensions (inclusive)to reduce. Defaults to 0.
112 * It has the purpose of squashing together the first n dimensions till (including) the @p reduce_end_axis. For instance, given a [2x3x4x5] image,
113 * when @p reduce_end_axis is 1, the reduction will be applied to axes 0 and 1, and the Softmax op will be applied on each of the [2x3] planes of the input image.
114 * Negative index is used to specify axis from the end (e.g. -1 for the last axis).
115 * Must be in range [-input_num_dimensions, input_num_dimensions).
Manuel Bottini678d83a2019-01-07 16:05:36 +0000116 */
SiCong Lid004a7a2020-05-28 15:26:41 +0100117 void configure_reshape_input_kernel(const ITensor *input, const ITensor *output, int32_t reduce_end_axis);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000118
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100119 MemoryGroup _memory_group;
120 NELogits1DMaxKernel _max_kernel;
121 NELogits1DSoftmaxKernel<IS_LOG> _softmax_kernel;
122 std::unique_ptr<INEKernel> _flat_or_reshape_kernel_ptr;
123 NEFillBorderKernel _fill_border_kernel;
124 NEReshapeLayerKernel _reshape_kernel;
125 Tensor _max;
126 Tensor _tmp;
127 Tensor _input_flattened;
128 Tensor _output_flattened;
129 bool _needs_flattening;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130};
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100131
132using NESoftmaxLayer = NESoftmaxLayerGeneric<false>;
133using NELogSoftmaxLayer = NESoftmaxLayerGeneric<true>;
134
Manuel Bottini678d83a2019-01-07 16:05:36 +0000135} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000136#endif /* ARM_COMPUTE_NESOFTMAXLAYER_H */