blob: edcf5d5a5dfb563737878eb4d8f689f281780f66 [file] [log] [blame]
Georgios Pinitas8be91482019-03-26 17:23:28 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 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"
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 Pinitas8be91482019-03-26 17:23:28 +000033
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
39{
40 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000041 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 2, DataType::F16, DataType::F32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000042
43 // Checks performed when output is configured
44 if((output != nullptr) && (output->total_size() != 0))
45 {
46 ARM_COMPUTE_RETURN_ERROR_ON(output->num_channels() != 1 && output->num_channels() != 2);
47 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
48 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
49 }
50
51 return Status{};
52}
53
54std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
55{
56 // Configure kernel window
57 Window win = calculate_max_window(*input, Steps());
58
59 if(output != nullptr)
60 {
61 // Output auto inizialitation if not yet initialized
62 auto_init_if_empty(*output, *input->clone());
63
64 // CLFFTScaleKernel doesn't need padding so update_window_and_padding() can be skipped
65 Coordinates coord;
66 coord.set_num_dimensions(output->num_dimensions());
67 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
68 }
69
70 return std::make_pair(Status{}, win);
71}
72} // namespace
73
74CLFFTScaleKernel::CLFFTScaleKernel()
75 : _input(nullptr), _output(nullptr), _run_in_place(false)
76{
77}
78
79void CLFFTScaleKernel::configure(ICLTensor *input, ICLTensor *output, const FFTScaleKernelInfo &config)
80{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010081 configure(CLKernelLibrary::get().get_compile_context(), input, output, config);
82}
83
Manuel Bottini256c0b92020-04-21 13:29:30 +010084void CLFFTScaleKernel::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, const FFTScaleKernelInfo &config)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010085{
Georgios Pinitas8be91482019-03-26 17:23:28 +000086 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
87 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (output != nullptr) ? output->info() : nullptr));
Manuel Bottinib6869dd2020-12-16 15:34:25 +000088 auto padding_info = get_padding_info({ input, output });
Georgios Pinitas8be91482019-03-26 17:23:28 +000089
90 _input = input;
91 _output = output;
92 _run_in_place = (output == nullptr) || (output == input);
93
94 // Create kernel
95 CLBuildOptions build_opts;
96 build_opts.add_option_if(_run_in_place, "-DIN_PLACE");
97 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(output != nullptr ? output->info()->num_channels() : input->info()->num_channels()));
Giorgio Arenaea7de7b2020-12-10 16:49:39 +000098 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Georgios Pinitas8be91482019-03-26 17:23:28 +000099 build_opts.add_option_if(config.conjugate, "-DCONJ");
100 std::string kernel_name = "fft_scale_conj";
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100101 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Georgios Pinitas8be91482019-03-26 17:23:28 +0000102
103 // Set static arguments
104 unsigned int idx = (1 + (_run_in_place ? 0 : 1)) * num_arguments_per_3D_tensor(); // Skip the input and output parameters
105 _kernel.setArg<cl_float>(idx, config.scale);
106
107 // Configure kernel window
108 auto win_config = validate_and_configure_window(input->info(), _run_in_place ? nullptr : output->info());
109 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
110 ICLKernel::configure_internal(win_config.second);
111
112 // Set config_id for enabling LWS tuning
113 _config_id = kernel_name;
114 _config_id += "_";
115 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
116 _config_id += "_";
117 _config_id += support::cpp11::to_string(input->info()->dimension(0));
118 _config_id += "_";
119 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000120 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000121}
122
123Status CLFFTScaleKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const FFTScaleKernelInfo &config)
124{
125 ARM_COMPUTE_UNUSED(config);
126 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
127 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
128
129 return Status{};
130}
131
132void CLFFTScaleKernel::run(const Window &window, cl::CommandQueue &queue)
133{
134 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
135 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
136
137 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
138 Window slice = collapsed.first_slice_window_3D();
139
140 do
141 {
142 unsigned int idx = 0;
143 add_3D_tensor_argument(idx, _input, slice);
144 if(!_run_in_place)
145 {
146 add_3D_tensor_argument(idx, _output, slice);
147 }
148 enqueue(queue, *this, slice, lws_hint());
149 }
150 while(collapsed.slide_window_slice_3D(slice));
151}
152} // namespace arm_compute