blob: 20b20201d5a1dc2e4926b672cbc03e34d1bb92b7 [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_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"
28#include "arm_compute/core/NEON/kernels/NESoftmaxLayerKernel.h"
29#include "arm_compute/runtime/IFunction.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010030#include "arm_compute/runtime/MemoryGroup.h"
SiCong Li96209c72020-08-21 12:28:30 +010031#include "arm_compute/runtime/NEON/functions/NEPermute.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include "arm_compute/runtime/Tensor.h"
33
34namespace arm_compute
35{
36class ITensor;
37
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010038/** Basic function to compute a SoftmaxLayer and a Log SoftmaxLayer.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039 *
40 * Softmax is calculated by :
Sang-Hoon Parka0205b92020-07-07 09:36:09 +010041 * @f[ out = exp((x - max(x)) * beta) / sum(exp((x - max(x)) * beta)) @f]
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042 *
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010043 * Log Softmax is calculated by :
Sang-Hoon Parka0205b92020-07-07 09:36:09 +010044 * @f[ out = (x - max(x) * beta) - log(\sum{e^{x - max(x) * beta}}) @f]
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010045 *
SiCong Li96209c72020-08-21 12:28:30 +010046 * This function runs the following function/kernels:
47 * -# If axis is not 0:
48 * -# @ref NEPermute
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000049 * -# @ref NEFillBorderKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050 * -# @ref NELogits1DMaxKernel
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000051 * -# @ref NELogits1DSoftmaxKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010053template <bool IS_LOG = false>
54class NESoftmaxLayerGeneric : public IFunction
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055{
56public:
57 /** Constructor */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010058 NESoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Manuel Bottini678d83a2019-01-07 16:05:36 +000059 /** Prevent instances of this class from being copied (As this class contains pointers) */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010060 NESoftmaxLayerGeneric(const NESoftmaxLayerGeneric &) = delete;
Manuel Bottini678d83a2019-01-07 16:05:36 +000061 /** Default move constructor */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010062 NESoftmaxLayerGeneric(NESoftmaxLayerGeneric &&) = default;
Manuel Bottini678d83a2019-01-07 16:05:36 +000063 /** Prevent instances of this class from being copied (As this class contains pointers) */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010064 NESoftmaxLayerGeneric &operator=(const NESoftmaxLayerGeneric &) = delete;
Manuel Bottini678d83a2019-01-07 16:05:36 +000065 /** Default move assignment operator */
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010066 NESoftmaxLayerGeneric &operator=(NESoftmaxLayerGeneric &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067 /** Set the input and output tensors.
68 *
morgolock9c7fed82020-08-05 12:30:56 +010069 * @param[in,out] input Source tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32. If the width is not a
70 * multiple of the internal processing block size, @ref NEFillBorderKernel replicates the
71 * last value of each row to the nearest multiple.
72 * @param[out] output Destination tensor. Data types supported: same as @p input.
73 * @param[in] beta (Optional) A scaling factor for the exponent.
SiCong Li96209c72020-08-21 12:28:30 +010074 * @param[in] axis (Optional) The dimension in which to apply the function. E.g. for input of shape 4x5x6 and
75 * axis=1, softmax will be applied to 4x6=24 vectors of size 5. Defaults to 0
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076 */
morgolock9c7fed82020-08-05 12:30:56 +010077 void configure(ITensor *input, ITensor *output, float beta = 1.0f, int32_t axis = 0);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000078 /** Static function to check if given info will lead to a valid configuration of @ref NESoftmaxLayer
79 *
morgolock9c7fed82020-08-05 12:30:56 +010080 * @param[in] input Source tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
81 * @param[in] output Destination tensor info. Data types supported: same as @p input
82 * @param[in] beta (Optional) A scaling factor for the exponent.
SiCong Li96209c72020-08-21 12:28:30 +010083 * @param[in] axis (Optional) The dimension in which to apply the function. E.g. for input of shape 4x5x6 and
84 * axis=1, softmax will be applied to 4x6=24 vectors of size 5. Defaults to 0
morgolock9c7fed82020-08-05 12:30:56 +010085 *
Michalis Spyrouafa5d812017-11-30 14:25:57 +000086 * @return a status
87 */
morgolock9c7fed82020-08-05 12:30:56 +010088 static Status validate(const ITensorInfo *input, const ITensorInfo *output, float beta = 1.0f, int32_t axis = 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089
90 // Inherited methods overridden:
91 void run() override;
92
93private:
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010094 MemoryGroup _memory_group;
SiCong Li96209c72020-08-21 12:28:30 +010095 NEPermute _permute_input;
96 NEPermute _permute_output;
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010097 NELogits1DMaxKernel _max_kernel;
98 NELogits1DSoftmaxKernel<IS_LOG> _softmax_kernel;
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010099 NEFillBorderKernel _fill_border_kernel;
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100100 Tensor _max;
101 Tensor _tmp;
SiCong Li96209c72020-08-21 12:28:30 +0100102 Tensor _input_permuted;
103 Tensor _output_permuted;
104 bool _needs_permute;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105};
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100106
107using NESoftmaxLayer = NESoftmaxLayerGeneric<false>;
108using NELogSoftmaxLayer = NESoftmaxLayerGeneric<true>;
109
Manuel Bottini678d83a2019-01-07 16:05:36 +0000110} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000111#endif /* ARM_COMPUTE_NESOFTMAXLAYER_H */