blob: ca3ef16d8f16c8046516dacfca075adfcb165b1a [file] [log] [blame]
giuros0114c4e0f2019-03-26 17:44:40 +00001/*
2 * Copyright (c) 2019 ARM Limited.
3 *
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_NEFFT1D_H__
25#define __ARM_COMPUTE_NEFFT1D_H__
26
27#include "arm_compute/core/NEON/kernels/NEFFTDigitReverseKernel.h"
28#include "arm_compute/core/NEON/kernels/NEFFTRadixStageKernel.h"
giuros0105fb4482019-03-26 17:44:40 +000029#include "arm_compute/core/NEON/kernels/NEFFTScaleKernel.h"
giuros0114c4e0f2019-03-26 17:44:40 +000030#include "arm_compute/runtime/IFunction.h"
31
32#include "arm_compute/runtime/FunctionDescriptors.h"
33#include "arm_compute/runtime/MemoryGroup.h"
34#include "arm_compute/runtime/Tensor.h"
35
36namespace arm_compute
37{
38// Forward declaration
39class ITensor;
40
giuros0105fb4482019-03-26 17:44:40 +000041/** Basic function to execute one dimensional FFT. This function calls the following NEON kernels:
giuros0114c4e0f2019-03-26 17:44:40 +000042 *
giuros0105fb4482019-03-26 17:44:40 +000043 * -# @ref NEFFTDigitReverseKernel Performs digit reverse
giuros0114c4e0f2019-03-26 17:44:40 +000044 * -# @ref NEFFTRadixStageKernel A list of FFT kernels depending on the radix decomposition
giuros0105fb4482019-03-26 17:44:40 +000045 * -# @ref NEFFTScaleKernel Performs output scaling in case of in inverse FFT
giuros0114c4e0f2019-03-26 17:44:40 +000046 */
47class NEFFT1D : public IFunction
48{
49public:
50 /** Default Constructor */
51 NEFFT1D(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
giuros0105fb4482019-03-26 17:44:40 +000052 /** Initialise the function's source and destinations.
giuros0114c4e0f2019-03-26 17:44:40 +000053 *
giuros01154bc1c2019-03-26 17:44:40 +000054 * @param[in] input Source tensor. Data types supported: F32. Number of channels supported: 1 (real tensor) or 2 (complex tensor).
55 * @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input.
56 * 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 +000057 * @param[in] config FFT related configuration
58 */
59 void configure(const ITensor *input, ITensor *output, const FFT1DInfo &config);
giuros0105fb4482019-03-26 17:44:40 +000060 /** Static function to check if given info will lead to a valid configuration of @ref NEFFT1D.
giuros0114c4e0f2019-03-26 17:44:40 +000061 *
62 * @param[in] input Source tensor info. Data types supported: F32.
63 * @param[in] output Destination tensor info. Data types and data layouts supported: Same as @p input.
64 * @param[in] config FFT related configuration
65 *
66 * @return a status
67 */
68 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const FFT1DInfo &config);
69
70 // Inherited methods overridden:
71 void run() override;
72
73protected:
74 MemoryGroup _memory_group;
giuros0114c4e0f2019-03-26 17:44:40 +000075 NEFFTDigitReverseKernel _digit_reverse_kernel;
76 std::vector<NEFFTRadixStageKernel> _fft_kernels;
giuros0105fb4482019-03-26 17:44:40 +000077 NEFFTScaleKernel _scale_kernel;
78 Tensor _digit_reversed_input;
79 Tensor _digit_reverse_indices;
80 unsigned int _num_ffts;
81 unsigned int _axis;
82 bool _run_scale;
giuros0114c4e0f2019-03-26 17:44:40 +000083};
84} // namespace arm_compute
85#endif /*__ARM_COMPUTE_NEFFT1D_H__ */