blob: 7d15d33ab500ad22b5448158cd32fbdae4015a96 [file] [log] [blame]
Georgios Pinitas0bc78492019-03-18 20:07:37 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Georgios Pinitas0bc78492019-03-18 20:07:37 +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 */
24#include "arm_compute/runtime/CL/functions/CLFFT1D.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/Validate.h"
28#include "arm_compute/core/utils/helpers/fft.h"
29#include "arm_compute/runtime/CL/CLScheduler.h"
30
31namespace arm_compute
32{
33CLFFT1D::CLFFT1D(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas8be91482019-03-26 17:23:28 +000034 : _memory_group(std::move(memory_manager)), _digit_reverse_kernel(), _fft_kernels(), _scale_kernel(), _digit_reversed_input(), _digit_reverse_indices(), _num_ffts(0), _run_scale(false)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000035{
36}
37
38void CLFFT1D::configure(const ICLTensor *input, ICLTensor *output, const FFT1DInfo &config)
39{
Manuel Bottini2b84be52020-04-08 10:15:51 +010040 configure(CLKernelLibrary::get().get_compile_context(), input, output, config);
41}
42
43void CLFFT1D::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const FFT1DInfo &config)
44{
Georgios Pinitas0bc78492019-03-18 20:07:37 +000045 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
46 ARM_COMPUTE_ERROR_THROW_ON(CLFFT1D::validate(input->info(), output->info(), config));
47
48 // Decompose size to radix factors
49 const auto supported_radix = CLFFTRadixStageKernel::supported_radix();
50 const unsigned int N = input->info()->tensor_shape()[config.axis];
51 const auto decomposed_vector = arm_compute::helpers::fft::decompose_stages(N, supported_radix);
52 ARM_COMPUTE_ERROR_ON(decomposed_vector.empty());
53
Georgios Pinitas8be91482019-03-26 17:23:28 +000054 // Flags
55 _run_scale = config.direction == FFTDirection::Inverse;
56 const bool is_c2r = input->info()->num_channels() == 2 && output->info()->num_channels() == 1;
57
Georgios Pinitas0bc78492019-03-18 20:07:37 +000058 // Configure digit reverse
Georgios Pinitas8be91482019-03-26 17:23:28 +000059 FFTDigitReverseKernelInfo digit_reverse_config;
60 digit_reverse_config.axis = config.axis;
61 digit_reverse_config.conjugate = config.direction == FFTDirection::Inverse;
Georgios Pinitas0bc78492019-03-18 20:07:37 +000062 TensorInfo digit_reverse_indices_info(TensorShape(input->info()->tensor_shape()[config.axis]), 1, DataType::U32);
63 _digit_reverse_indices.allocator()->init(digit_reverse_indices_info);
64 _memory_group.manage(&_digit_reversed_input);
Manuel Bottini2b84be52020-04-08 10:15:51 +010065 _digit_reverse_kernel.configure(compile_context, input, &_digit_reversed_input, &_digit_reverse_indices, digit_reverse_config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000066
67 // Create and configure FFT kernels
68 unsigned int Nx = 1;
69 _num_ffts = decomposed_vector.size();
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010070 _fft_kernels.resize(_num_ffts);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000071 for(unsigned int i = 0; i < _num_ffts; ++i)
72 {
73 const unsigned int radix_for_stage = decomposed_vector.at(i);
74
Georgios Pinitas8be91482019-03-26 17:23:28 +000075 FFTRadixStageKernelInfo fft_kernel_info;
76 fft_kernel_info.axis = config.axis;
77 fft_kernel_info.radix = radix_for_stage;
78 fft_kernel_info.Nx = Nx;
79 fft_kernel_info.is_first_stage = (i == 0);
Manuel Bottini2b84be52020-04-08 10:15:51 +010080 _fft_kernels[i].configure(compile_context, &_digit_reversed_input, ((i == (_num_ffts - 1)) && !is_c2r) ? output : nullptr, fft_kernel_info);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000081
82 Nx *= radix_for_stage;
83 }
84
Georgios Pinitas8be91482019-03-26 17:23:28 +000085 // Configure scale kernel
86 if(_run_scale)
87 {
88 FFTScaleKernelInfo scale_config;
89 scale_config.scale = static_cast<float>(N);
90 scale_config.conjugate = config.direction == FFTDirection::Inverse;
Manuel Bottini2b84be52020-04-08 10:15:51 +010091 is_c2r ? _scale_kernel.configure(compile_context, &_digit_reversed_input, output, scale_config) : _scale_kernel.configure(output, nullptr, scale_config);
Georgios Pinitas8be91482019-03-26 17:23:28 +000092 }
93
Georgios Pinitas0bc78492019-03-18 20:07:37 +000094 // Allocate tensors
95 _digit_reversed_input.allocator()->allocate();
96 _digit_reverse_indices.allocator()->allocate();
97
98 // Init digit reverse indices
99 const auto digit_reverse_cpu = arm_compute::helpers::fft::digit_reverse_indices(N, decomposed_vector);
100 _digit_reverse_indices.map(CLScheduler::get().queue(), true);
101 std::copy_n(digit_reverse_cpu.data(), N, reinterpret_cast<unsigned int *>(_digit_reverse_indices.buffer()));
102 _digit_reverse_indices.unmap(CLScheduler::get().queue());
103}
104
105Status CLFFT1D::validate(const ITensorInfo *input, const ITensorInfo *output, const FFT1DInfo &config)
106{
107 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas8be91482019-03-26 17:23:28 +0000108 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() != DataType::F32);
109 ARM_COMPUTE_RETURN_ERROR_ON(input->num_channels() != 1 && input->num_channels() != 2);
110 ARM_COMPUTE_RETURN_ERROR_ON(std::set<unsigned int>({ 0, 1 }).count(config.axis) == 0);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000111
112 // Check if FFT is decomposable
113 const auto supported_radix = CLFFTRadixStageKernel::supported_radix();
114 const unsigned int N = input->tensor_shape()[config.axis];
115 const auto decomposed_vector = arm_compute::helpers::fft::decompose_stages(N, supported_radix);
116 ARM_COMPUTE_RETURN_ERROR_ON(decomposed_vector.empty());
117
118 // Checks performed when output is configured
119 if((output != nullptr) && (output->total_size() != 0))
120 {
Georgios Pinitas8be91482019-03-26 17:23:28 +0000121 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() == 1 && input->num_channels() == 1);
122 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() != 1 && output->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000123 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
124 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
125 }
126
127 return Status{};
128}
129
130void CLFFT1D::run()
131{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100132 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000133
Georgios Pinitas8be91482019-03-26 17:23:28 +0000134 // Run digit reverse
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000135 CLScheduler::get().enqueue(_digit_reverse_kernel, false);
136
Georgios Pinitas8be91482019-03-26 17:23:28 +0000137 // Run radix kernels
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000138 for(unsigned int i = 0; i < _num_ffts; ++i)
139 {
Georgios Pinitas8be91482019-03-26 17:23:28 +0000140 CLScheduler::get().enqueue(_fft_kernels[i], i == (_num_ffts - 1) && !_run_scale);
141 }
142
143 // Run output scaling
144 if(_run_scale)
145 {
146 CLScheduler::get().enqueue(_scale_kernel, true);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000147 }
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000148}
149} // namespace arm_compute