blob: 043ad975d58e079c89f1fbd5192844c36c771497 [file] [log] [blame]
Michalis Spyrou373b4072021-01-20 16:41:12 +00001/*
Omar Al Khatib93e743f2024-01-02 14:45:07 +00002 * Copyright (c) 2017-2024 Arm Limited.
Michalis Spyrou373b4072021-01-20 16:41:12 +00003 *
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 */
Gunes Bayirfadc9b12023-11-07 05:43:07 +000024#ifndef ACL_SRC_CPU_KERNELS_CPUSOFTMAXKERNEL_H
25#define ACL_SRC_CPU_KERNELS_CPUSOFTMAXKERNEL_H
Dana Zlotnik6a2df882022-01-17 09:54:26 +020026
Michalis Spyrou373b4072021-01-20 16:41:12 +000027#include "src/core/common/Macros.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010028#include "src/cpu/ICpuKernel.h"
Dana Zlotnik6a2df882022-01-17 09:54:26 +020029
Michalis Spyrou373b4072021-01-20 16:41:12 +000030namespace arm_compute
31{
32namespace cpu
33{
34namespace kernels
35{
Gunes Bayirfadc9b12023-11-07 05:43:07 +000036/** Interface for softmax computation */
37class CpuSoftmaxKernel : public ICpuKernel<CpuSoftmaxKernel>
Michalis Spyrou373b4072021-01-20 16:41:12 +000038{
Yair Schwarzbaum46d44d22022-01-12 16:38:58 +020039private:
Gunes Bayirfadc9b12023-11-07 05:43:07 +000040 using SoftmaxKernelPtr =
Omar Al Khatib93e743f2024-01-02 14:45:07 +000041 std::add_pointer<void(const ITensor *, void *const, ITensor *, float, int, const Window &)>::type;
Yair Schwarzbaum46d44d22022-01-12 16:38:58 +020042
Michalis Spyrou373b4072021-01-20 16:41:12 +000043public:
Gunes Bayirfadc9b12023-11-07 05:43:07 +000044 CpuSoftmaxKernel() = default;
45 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(CpuSoftmaxKernel);
Dana Zlotnik6a2df882022-01-17 09:54:26 +020046
Michalis Spyrou373b4072021-01-20 16:41:12 +000047 /** Set the input and output tensors.
48 *
Gunes Bayirfadc9b12023-11-07 05:43:07 +000049 * @param[in] src Source tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
50 * @param[out] dst Destination tensor info. Data types supported: same as @p input.
51 * @param[in] beta A scaling factor for the exponent.
Omar Al Khatib93e743f2024-01-02 14:45:07 +000052 * @param[in] is_log True if the operation is log-softmax.
53 * @param[in] axis The axis along which to perform the softmax operation.
Michalis Spyrou373b4072021-01-20 16:41:12 +000054 *
55 * @param tmp Auxiliary tensor info. Must be type F32 and same shape as the input.
56 */
Omar Al Khatib93e743f2024-01-02 14:45:07 +000057 void configure(const ITensorInfo *src, ITensorInfo *dst, float beta, bool is_log, int axis, ITensorInfo *tmp);
Georgios Pinitas5fdde992021-06-25 05:42:57 +010058 /** Static function to check if given info will lead to a valid configuration
Michalis Spyrou373b4072021-01-20 16:41:12 +000059 *
Gunes Bayirfadc9b12023-11-07 05:43:07 +000060 * Similar to CpuSoftmaxKernel::configure()
Michalis Spyrou373b4072021-01-20 16:41:12 +000061 *
62 * @return a status
63 */
Gunes Bayirfadc9b12023-11-07 05:43:07 +000064 static Status
Omar Al Khatib93e743f2024-01-02 14:45:07 +000065 validate(const ITensorInfo *src, const ITensorInfo *dst, float beta, int axis, bool is_log, const ITensorInfo *tmp);
Dana Zlotnik6a2df882022-01-17 09:54:26 +020066
Michalis Spyrou373b4072021-01-20 16:41:12 +000067 // Inherited methods overridden:
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068 void run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) override;
Michalis Spyrou373b4072021-01-20 16:41:12 +000069 const char *name() const override;
Dana Zlotnik6a2df882022-01-17 09:54:26 +020070
Gunes Bayirfadc9b12023-11-07 05:43:07 +000071 struct SoftmaxKernel
Yair Schwarzbaum46d44d22022-01-12 16:38:58 +020072 {
Gunes Bayirfadc9b12023-11-07 05:43:07 +000073 const char *name;
74 const SoftmaxKernelDataTypeISASelectorDataPtr is_selected;
75 SoftmaxKernelPtr ukernel;
Yair Schwarzbaum46d44d22022-01-12 16:38:58 +020076 };
Dana Zlotnik6a2df882022-01-17 09:54:26 +020077
Gunes Bayirfadc9b12023-11-07 05:43:07 +000078 static const std::vector<SoftmaxKernel> &get_available_kernels();
Georgios Pinitas5fdde992021-06-25 05:42:57 +010079
80private:
Gunes Bayirfadc9b12023-11-07 05:43:07 +000081 float _beta{1.0f};
82 SoftmaxKernelPtr _run_method{nullptr};
83 std::string _name{};
Omar Al Khatib93e743f2024-01-02 14:45:07 +000084 int _axis{};
Michalis Spyrou373b4072021-01-20 16:41:12 +000085};
86} // namespace kernels
87} // namespace cpu
88} // namespace arm_compute
Gunes Bayirfadc9b12023-11-07 05:43:07 +000089#endif // ACL_SRC_CPU_KERNELS_CPUSOFTMAXKERNEL_H