blob: 99c6fd4eb416dbedd95e1b5741602a5a5c980f12 [file] [log] [blame]
giuros0114c4e0f2019-03-26 17:44:40 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2019-2021 Arm Limited.
giuros0114c4e0f2019-03-26 17:44:40 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEFFT1D_H
25#define ARM_COMPUTE_NEFFT1D_H
giuros0114c4e0f2019-03-26 17:44:40 +000026
giuros0114c4e0f2019-03-26 17:44:40 +000027#include "arm_compute/runtime/FunctionDescriptors.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028#include "arm_compute/runtime/IFunction.h"
giuros0114c4e0f2019-03-26 17:44:40 +000029#include "arm_compute/runtime/MemoryGroup.h"
30#include "arm_compute/runtime/Tensor.h"
31
Michalis Spyrouebcebf12020-10-21 00:04:14 +010032#include <memory>
33
giuros0114c4e0f2019-03-26 17:44:40 +000034namespace arm_compute
35{
36// Forward declaration
37class ITensor;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010038class NEFFTDigitReverseKernel;
39class NEFFTRadixStageKernel;
40class NEFFTScaleKernel;
giuros0114c4e0f2019-03-26 17:44:40 +000041
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000042/** Basic function to execute one dimensional FFT. This function calls the following kernels:
giuros0114c4e0f2019-03-26 17:44:40 +000043 *
giuros0105fb4482019-03-26 17:44:40 +000044 * -# @ref NEFFTDigitReverseKernel Performs digit reverse
giuros0114c4e0f2019-03-26 17:44:40 +000045 * -# @ref NEFFTRadixStageKernel A list of FFT kernels depending on the radix decomposition
giuros0105fb4482019-03-26 17:44:40 +000046 * -# @ref NEFFTScaleKernel Performs output scaling in case of in inverse FFT
giuros0114c4e0f2019-03-26 17:44:40 +000047 */
48class NEFFT1D : public IFunction
49{
50public:
51 /** Default Constructor */
52 NEFFT1D(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Michalis Spyrouebcebf12020-10-21 00:04:14 +010053 /** Prevent instances of this class from being copied (As this class contains pointers) */
54 NEFFT1D(const NEFFT1D &) = delete;
55 /** Prevent instances of this class from being copied (As this class contains pointers) */
56 NEFFT1D &operator=(const NEFFT1D &) = delete;
57 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
58 NEFFT1D(NEFFT1D &&) = delete;
59 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
60 NEFFT1D &operator=(NEFFT1D &&) = delete;
61 /** Default destructor */
62 ~NEFFT1D();
giuros0105fb4482019-03-26 17:44:40 +000063 /** Initialise the function's source and destinations.
giuros0114c4e0f2019-03-26 17:44:40 +000064 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010065 * Valid data layouts:
66 * - All
67 *
68 * Valid data type configurations:
69 * |src |dst |
70 * |:------|:------|
71 * |F32 |F32 |
72 *
giuros01154bc1c2019-03-26 17:44:40 +000073 * @param[in] input Source tensor. Data types supported: F32. Number of channels supported: 1 (real tensor) or 2 (complex tensor).
74 * @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input.
75 * Number of channels supported: 1 (real tensor) or 2 (complex tensor).If @p input is real, @p output must be complex.
giuros0114c4e0f2019-03-26 17:44:40 +000076 * @param[in] config FFT related configuration
77 */
78 void configure(const ITensor *input, ITensor *output, const FFT1DInfo &config);
giuros0105fb4482019-03-26 17:44:40 +000079 /** Static function to check if given info will lead to a valid configuration of @ref NEFFT1D.
giuros0114c4e0f2019-03-26 17:44:40 +000080 *
81 * @param[in] input Source tensor info. Data types supported: F32.
82 * @param[in] output Destination tensor info. Data types and data layouts supported: Same as @p input.
83 * @param[in] config FFT related configuration
84 *
85 * @return a status
86 */
87 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const FFT1DInfo &config);
88
89 // Inherited methods overridden:
90 void run() override;
91
92protected:
Michalis Spyrouebcebf12020-10-21 00:04:14 +010093 MemoryGroup _memory_group;
94 std::unique_ptr<NEFFTDigitReverseKernel> _digit_reverse_kernel;
95 std::vector<std::unique_ptr<NEFFTRadixStageKernel>> _fft_kernels;
96 std::unique_ptr<NEFFTScaleKernel> _scale_kernel;
97 Tensor _digit_reversed_input;
98 Tensor _digit_reverse_indices;
99 unsigned int _num_ffts;
100 unsigned int _axis;
101 bool _run_scale;
giuros0114c4e0f2019-03-26 17:44:40 +0000102};
103} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000104#endif /*ARM_COMPUTE_NEFFT1D_H */