blob: 3d8f875ef7ba5a7f3c36d1f3669578030302d008 [file] [log] [blame]
Georgios Pinitas0bc78492019-03-18 20:07:37 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2019-2021, 2023 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLFFTDigitReverseKernel.h"
Georgios Pinitas0bc78492019-03-18 20:07:37 +000025
26#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitas0bc78492019-03-18 20:07:37 +000027#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/TensorInfo.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000029#include "arm_compute/core/Utils.h"
30#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010031
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/CL/CLValidate.h"
33#include "src/core/helpers/AutoConfiguration.h"
34#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Georgios Pinitas0bc78492019-03-18 20:07:37 +000036
37namespace arm_compute
38{
39namespace
40{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010041Status validate_arguments(const ITensorInfo *input,
42 const ITensorInfo *output,
43 const ITensorInfo *idx,
44 const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000045{
46 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000047 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(input, DataType::F16, DataType::F32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000048 ARM_COMPUTE_RETURN_ERROR_ON(input->num_channels() != 1 && input->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000049 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(idx, 1, DataType::U32);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010050 ARM_COMPUTE_RETURN_ERROR_ON(std::set<unsigned int>({0, 1}).count(config.axis) == 0);
Georgios Pinitas8be91482019-03-26 17:23:28 +000051 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[config.axis] != idx->tensor_shape().x());
Georgios Pinitas0bc78492019-03-18 20:07:37 +000052
53 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 if ((output != nullptr) && (output->total_size() != 0))
Georgios Pinitas0bc78492019-03-18 20:07:37 +000055 {
Georgios Pinitas8be91482019-03-26 17:23:28 +000056 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000057 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
59 }
60
61 return Status{};
62}
63
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010064std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input,
65 ITensorInfo *output,
66 ITensorInfo *idx,
67 const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000068{
Georgios Pinitas8be91482019-03-26 17:23:28 +000069 ARM_COMPUTE_UNUSED(idx, config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000070
Georgios Pinitas8be91482019-03-26 17:23:28 +000071 auto_init_if_empty(*output, input->clone()->set_num_channels(2));
Georgios Pinitas0bc78492019-03-18 20:07:37 +000072
73 Window win = calculate_max_window(*output, Steps());
Georgios Pinitas0bc78492019-03-18 20:07:37 +000074
75 return std::make_pair(Status{}, win);
76}
77} // namespace
78
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079CLFFTDigitReverseKernel::CLFFTDigitReverseKernel() : _input(nullptr), _output(nullptr), _idx(nullptr)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000080{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010081 _type = CLKernelType::ELEMENTWISE;
Georgios Pinitas0bc78492019-03-18 20:07:37 +000082}
83
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084void CLFFTDigitReverseKernel::configure(const ICLTensor *input,
85 ICLTensor *output,
86 const ICLTensor *idx,
87 const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000088{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010089 configure(CLKernelLibrary::get().get_compile_context(), input, output, idx, config);
90}
91
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092void CLFFTDigitReverseKernel::configure(const CLCompileContext &compile_context,
93 const ICLTensor *input,
94 ICLTensor *output,
95 const ICLTensor *idx,
96 const FFTDigitReverseKernelInfo &config)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010097{
Georgios Pinitas0bc78492019-03-18 20:07:37 +000098 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, idx);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 auto padding_info = get_padding_info({input, output, idx});
Georgios Pinitas8be91482019-03-26 17:23:28 +0000100 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), idx->info(), config));
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000101
102 _input = input;
103 _output = output;
104 _idx = idx;
105
106 // Create kernel
Georgios Pinitas8be91482019-03-26 17:23:28 +0000107 CLBuildOptions build_opts;
108 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(input->info()->num_channels()));
Giorgio Arenaea7de7b2020-12-10 16:49:39 +0000109 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000110 build_opts.add_option_if(config.conjugate, "-DCONJ");
111 std::string kernel_name = "fft_digit_reverse_axis_" + support::cpp11::to_string(config.axis);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100112 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000113
114 // Configure kernel window
Georgios Pinitas8be91482019-03-26 17:23:28 +0000115 auto win_config = validate_and_configure_window(input->info(), output->info(), idx->info(), config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000116 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
117 ICLKernel::configure_internal(win_config.second);
118
119 // Set config_id for enabling LWS tuning
Georgios Pinitas8be91482019-03-26 17:23:28 +0000120 _config_id = kernel_name;
121 _config_id += "_";
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000122 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
123 _config_id += "_";
124 _config_id += support::cpp11::to_string(input->info()->dimension(0));
125 _config_id += "_";
126 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000127 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000128}
129
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100130Status CLFFTDigitReverseKernel::validate(const ITensorInfo *input,
131 const ITensorInfo *output,
132 const ITensorInfo *idx,
133 const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000134{
Georgios Pinitas8be91482019-03-26 17:23:28 +0000135 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, idx, config));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100136 ARM_COMPUTE_RETURN_ON_ERROR(
137 validate_and_configure_window(input->clone().get(), output->clone().get(), idx->clone().get(), config).first);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000138
139 return Status{};
140}
141
142void CLFFTDigitReverseKernel::run(const Window &window, cl::CommandQueue &queue)
143{
144 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
145 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
146
147 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
148 Window slice = collapsed.first_slice_window_3D();
149
150 do
151 {
152 unsigned int idx = 0;
153 add_3D_tensor_argument(idx, _input, slice);
154 add_3D_tensor_argument(idx, _output, slice);
155 add_1D_tensor_argument(idx, _idx, slice);
156 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100157 } while (collapsed.slide_window_slice_3D(slice));
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000158}
159} // namespace arm_compute