blob: bbf4e554332a769e50fb78545347e89edffeed71 [file] [log] [blame]
Georgios Pinitas0bc78492019-03-18 20:07:37 +00001/*
Michalis Spyrou702dc0c2021-03-19 15:06:07 +00002 * Copyright (c) 2019-2021 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"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010029#include "src/core/CL/CLValidate.h"
30#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000032#include "support/StringSupport.h"
Georgios Pinitas0bc78492019-03-18 20:07:37 +000033
34namespace arm_compute
35{
36namespace
37{
Georgios Pinitas8be91482019-03-26 17:23:28 +000038Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000039{
40 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000041 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(input, DataType::F16, DataType::F32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000042 ARM_COMPUTE_RETURN_ERROR_ON(input->num_channels() != 1 && input->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000043 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(idx, 1, DataType::U32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000044 ARM_COMPUTE_RETURN_ERROR_ON(std::set<unsigned int>({ 0, 1 }).count(config.axis) == 0);
45 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[config.axis] != idx->tensor_shape().x());
Georgios Pinitas0bc78492019-03-18 20:07:37 +000046
47 // Checks performed when output is configured
48 if((output != nullptr) && (output->total_size() != 0))
49 {
Georgios Pinitas8be91482019-03-26 17:23:28 +000050 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000051 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
53 }
54
55 return Status{};
56}
57
Georgios Pinitas8be91482019-03-26 17:23:28 +000058std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, ITensorInfo *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000059{
Georgios Pinitas8be91482019-03-26 17:23:28 +000060 ARM_COMPUTE_UNUSED(idx, config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000061
Georgios Pinitas8be91482019-03-26 17:23:28 +000062 auto_init_if_empty(*output, input->clone()->set_num_channels(2));
Georgios Pinitas0bc78492019-03-18 20:07:37 +000063
64 Window win = calculate_max_window(*output, Steps());
Georgios Pinitas0bc78492019-03-18 20:07:37 +000065
66 return std::make_pair(Status{}, win);
67}
68} // namespace
69
70CLFFTDigitReverseKernel::CLFFTDigitReverseKernel()
71 : _input(nullptr), _output(nullptr), _idx(nullptr)
72{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010073 _type = CLKernelType::ELEMENTWISE;
Georgios Pinitas0bc78492019-03-18 20:07:37 +000074}
75
Georgios Pinitas8be91482019-03-26 17:23:28 +000076void CLFFTDigitReverseKernel::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000077{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010078 configure(CLKernelLibrary::get().get_compile_context(), input, output, idx, config);
79}
80
Manuel Bottini256c0b92020-04-21 13:29:30 +010081void CLFFTDigitReverseKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const ICLTensor *idx, const FFTDigitReverseKernelInfo &config)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010082{
Georgios Pinitas0bc78492019-03-18 20:07:37 +000083 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, idx);
Manuel Bottinib6869dd2020-12-16 15:34:25 +000084 auto padding_info = get_padding_info({ input, output, idx });
Georgios Pinitas8be91482019-03-26 17:23:28 +000085 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), idx->info(), config));
Georgios Pinitas0bc78492019-03-18 20:07:37 +000086
87 _input = input;
88 _output = output;
89 _idx = idx;
90
91 // Create kernel
Georgios Pinitas8be91482019-03-26 17:23:28 +000092 CLBuildOptions build_opts;
93 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(input->info()->num_channels()));
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000094 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Georgios Pinitas8be91482019-03-26 17:23:28 +000095 build_opts.add_option_if(config.conjugate, "-DCONJ");
96 std::string kernel_name = "fft_digit_reverse_axis_" + support::cpp11::to_string(config.axis);
Manuel Bottini4c6bd512020-04-08 10:15:51 +010097 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Georgios Pinitas0bc78492019-03-18 20:07:37 +000098
99 // Configure kernel window
Georgios Pinitas8be91482019-03-26 17:23:28 +0000100 auto win_config = validate_and_configure_window(input->info(), output->info(), idx->info(), config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000101 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
102 ICLKernel::configure_internal(win_config.second);
103
104 // Set config_id for enabling LWS tuning
Georgios Pinitas8be91482019-03-26 17:23:28 +0000105 _config_id = kernel_name;
106 _config_id += "_";
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000107 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
108 _config_id += "_";
109 _config_id += support::cpp11::to_string(input->info()->dimension(0));
110 _config_id += "_";
111 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000112 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000113}
114
Georgios Pinitas8be91482019-03-26 17:23:28 +0000115Status CLFFTDigitReverseKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000116{
Georgios Pinitas8be91482019-03-26 17:23:28 +0000117 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, idx, config));
118 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), idx->clone().get(), config).first);
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000119
120 return Status{};
121}
122
123void CLFFTDigitReverseKernel::run(const Window &window, cl::CommandQueue &queue)
124{
125 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
126 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
127
128 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
129 Window slice = collapsed.first_slice_window_3D();
130
131 do
132 {
133 unsigned int idx = 0;
134 add_3D_tensor_argument(idx, _input, slice);
135 add_3D_tensor_argument(idx, _output, slice);
136 add_1D_tensor_argument(idx, _idx, slice);
137 enqueue(queue, *this, slice, lws_hint());
138 }
139 while(collapsed.slide_window_slice_3D(slice));
140}
141} // namespace arm_compute