blob: be6e16b074bfbd4b50acda68999611b19bb2cf42 [file] [log] [blame]
Georgios Pinitas8be91482019-03-26 17:23:28 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2019-2021, 2023 Arm Limited.
Georgios Pinitas8be91482019-03-26 17:23:28 +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/CLFFTScaleKernel.h"
Georgios Pinitas8be91482019-03-26 17:23:28 +000025
26#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitas8be91482019-03-26 17:23:28 +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 Pinitas8be91482019-03-26 17:23:28 +000036
37namespace arm_compute
38{
39namespace
40{
41Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
42{
43 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000044 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 2, DataType::F16, DataType::F32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000045
46 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010047 if ((output != nullptr) && (output->total_size() != 0))
Georgios Pinitas8be91482019-03-26 17:23:28 +000048 {
49 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() != 1 && output->num_channels() != 2);
50 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}
Georgios Pinitas8be91482019-03-26 17:23:28 +000056} // namespace
57
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058CLFFTScaleKernel::CLFFTScaleKernel() : _input(nullptr), _output(nullptr), _run_in_place(false)
Georgios Pinitas8be91482019-03-26 17:23:28 +000059{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010060 _type = CLKernelType::ELEMENTWISE;
Georgios Pinitas8be91482019-03-26 17:23:28 +000061}
62
63void CLFFTScaleKernel::configure(ICLTensor *input, ICLTensor *output, const FFTScaleKernelInfo &config)
64{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010065 configure(CLKernelLibrary::get().get_compile_context(), input, output, config);
66}
67
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068void CLFFTScaleKernel::configure(const CLCompileContext &compile_context,
69 ICLTensor *input,
70 ICLTensor *output,
71 const FFTScaleKernelInfo &config)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010072{
Georgios Pinitas8be91482019-03-26 17:23:28 +000073 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
74 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (output != nullptr) ? output->info() : nullptr));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075 auto padding_info = get_padding_info({input, output});
Georgios Pinitas8be91482019-03-26 17:23:28 +000076
77 _input = input;
78 _output = output;
79 _run_in_place = (output == nullptr) || (output == input);
80
81 // Create kernel
82 CLBuildOptions build_opts;
83 build_opts.add_option_if(_run_in_place, "-DIN_PLACE");
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(output != nullptr ? output->info()->num_channels()
85 : input->info()->num_channels()));
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000086 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Georgios Pinitas8be91482019-03-26 17:23:28 +000087 build_opts.add_option_if(config.conjugate, "-DCONJ");
88 std::string kernel_name = "fft_scale_conj";
Manuel Bottini4c6bd512020-04-08 10:15:51 +010089 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Georgios Pinitas8be91482019-03-26 17:23:28 +000090
91 // Set static arguments
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092 unsigned int idx =
93 (1 + (_run_in_place ? 0 : 1)) * num_arguments_per_3D_tensor(); // Skip the input and output parameters
Georgios Pinitas8be91482019-03-26 17:23:28 +000094 _kernel.setArg<cl_float>(idx, config.scale);
95
96 // Configure kernel window
Michalis Spyrou702dc0c2021-03-19 15:06:07 +000097 Window win = calculate_max_window(*input->info(), Steps());
98
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 if (output != nullptr)
Michalis Spyrou702dc0c2021-03-19 15:06:07 +0000100 {
101 // Output auto inizialitation if not yet initialized
102 auto_init_if_empty(*output->info(), *input->info()->clone());
103 }
104
105 ICLKernel::configure_internal(win);
Georgios Pinitas8be91482019-03-26 17:23:28 +0000106
107 // Set config_id for enabling LWS tuning
108 _config_id = kernel_name;
109 _config_id += "_";
110 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
111 _config_id += "_";
112 _config_id += support::cpp11::to_string(input->info()->dimension(0));
113 _config_id += "_";
114 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000115 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000116}
117
118Status CLFFTScaleKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const FFTScaleKernelInfo &config)
119{
120 ARM_COMPUTE_UNUSED(config);
121 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000122
123 return Status{};
124}
125
126void CLFFTScaleKernel::run(const Window &window, cl::CommandQueue &queue)
127{
128 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
129 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
130
131 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
132 Window slice = collapsed.first_slice_window_3D();
133
134 do
135 {
136 unsigned int idx = 0;
137 add_3D_tensor_argument(idx, _input, slice);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100138 if (!_run_in_place)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000139 {
140 add_3D_tensor_argument(idx, _output, slice);
141 }
142 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100143 } while (collapsed.slide_window_slice_3D(slice));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000144}
145} // namespace arm_compute