blob: b04293db5b1b32a7b9faa0de1b36cab39726ab5f [file] [log] [blame]
Georgios Pinitas0bc78492019-03-18 20:07:37 +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#include "arm_compute/core/CL/kernels/CLFFTDigitReverseKernel.h"
25
26#include "arm_compute/core/CL/CLKernelLibrary.h"
27#include "arm_compute/core/CL/CLValidate.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Window.h"
32
33namespace arm_compute
34{
35namespace
36{
Georgios Pinitas8be91482019-03-26 17:23:28 +000037Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000038{
39 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Georgios Pinitas8be91482019-03-26 17:23:28 +000040 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() != DataType::F32);
41 ARM_COMPUTE_RETURN_ERROR_ON(input->num_channels() != 1 && input->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000042 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(idx, 1, DataType::U32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000043 ARM_COMPUTE_RETURN_ERROR_ON(std::set<unsigned int>({ 0, 1 }).count(config.axis) == 0);
44 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[config.axis] != idx->tensor_shape().x());
Georgios Pinitas0bc78492019-03-18 20:07:37 +000045
46 // Checks performed when output is configured
47 if((output != nullptr) && (output->total_size() != 0))
48 {
Georgios Pinitas8be91482019-03-26 17:23:28 +000049 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() != 2);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000050 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
52 }
53
54 return Status{};
55}
56
Georgios Pinitas8be91482019-03-26 17:23:28 +000057std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, ITensorInfo *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000058{
Georgios Pinitas8be91482019-03-26 17:23:28 +000059 ARM_COMPUTE_UNUSED(idx, config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000060
Georgios Pinitas8be91482019-03-26 17:23:28 +000061 auto_init_if_empty(*output, input->clone()->set_num_channels(2));
Georgios Pinitas0bc78492019-03-18 20:07:37 +000062
63 Window win = calculate_max_window(*output, Steps());
64 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
65
66 return std::make_pair(Status{}, win);
67}
68} // namespace
69
70CLFFTDigitReverseKernel::CLFFTDigitReverseKernel()
71 : _input(nullptr), _output(nullptr), _idx(nullptr)
72{
73}
74
Georgios Pinitas8be91482019-03-26 17:23:28 +000075void CLFFTDigitReverseKernel::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +000076{
77 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, idx);
Georgios Pinitas8be91482019-03-26 17:23:28 +000078 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), idx->info(), config));
Georgios Pinitas0bc78492019-03-18 20:07:37 +000079
80 _input = input;
81 _output = output;
82 _idx = idx;
83
84 // Create kernel
Georgios Pinitas8be91482019-03-26 17:23:28 +000085 CLBuildOptions build_opts;
86 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(input->info()->num_channels()));
87 build_opts.add_option_if(config.conjugate, "-DCONJ");
88 std::string kernel_name = "fft_digit_reverse_axis_" + support::cpp11::to_string(config.axis);
89 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Georgios Pinitas0bc78492019-03-18 20:07:37 +000090
91 // Configure kernel window
Georgios Pinitas8be91482019-03-26 17:23:28 +000092 auto win_config = validate_and_configure_window(input->info(), output->info(), idx->info(), config);
Georgios Pinitas0bc78492019-03-18 20:07:37 +000093 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
94 ICLKernel::configure_internal(win_config.second);
95
96 // Set config_id for enabling LWS tuning
Georgios Pinitas8be91482019-03-26 17:23:28 +000097 _config_id = kernel_name;
98 _config_id += "_";
Georgios Pinitas0bc78492019-03-18 20:07:37 +000099 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
100 _config_id += "_";
101 _config_id += support::cpp11::to_string(input->info()->dimension(0));
102 _config_id += "_";
103 _config_id += support::cpp11::to_string(input->info()->dimension(1));
104}
105
Georgios Pinitas8be91482019-03-26 17:23:28 +0000106Status CLFFTDigitReverseKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *idx, const FFTDigitReverseKernelInfo &config)
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000107{
Georgios Pinitas8be91482019-03-26 17:23:28 +0000108 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, idx, config));
109 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 +0000110
111 return Status{};
112}
113
114void CLFFTDigitReverseKernel::run(const Window &window, cl::CommandQueue &queue)
115{
116 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
117 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
118
119 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
120 Window slice = collapsed.first_slice_window_3D();
121
122 do
123 {
124 unsigned int idx = 0;
125 add_3D_tensor_argument(idx, _input, slice);
126 add_3D_tensor_argument(idx, _output, slice);
127 add_1D_tensor_argument(idx, _idx, slice);
128 enqueue(queue, *this, slice, lws_hint());
129 }
130 while(collapsed.slide_window_slice_3D(slice));
131}
132} // namespace arm_compute