blob: 68f793b6e2373d3cba7f4bdafc0e9eb27f6ff871 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2016-2020 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/CLMagnitudePhaseKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
37#include <set>
38#include <string>
39
40using namespace arm_compute;
41
42CLMagnitudePhaseKernel::CLMagnitudePhaseKernel()
43 : _gx(nullptr), _gy(nullptr), _magnitude(nullptr), _phase(nullptr), _run_mag(false), _run_phase(false)
44{
45}
46
47void CLMagnitudePhaseKernel::configure(const ICLTensor *gx, const ICLTensor *gy, ICLTensor *magnitude, ICLTensor *phase,
48 MagnitudeType mag_type, PhaseType phase_type)
49{
50 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(gx, 1, DataType::S16, DataType::S32);
51 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(gy, 1, DataType::S16, DataType::S32);
52 ARM_COMPUTE_ERROR_ON((magnitude == nullptr) && (phase == nullptr));
53 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(gx, gy);
54
55 _run_mag = (magnitude != nullptr);
56 _run_phase = (phase != nullptr);
57 if(_run_mag)
58 {
59 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(magnitude, 1, DataType::S16, DataType::S32);
60 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(gx, magnitude);
61 }
62 if(_run_phase)
63 {
64 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(phase, 1, DataType::U8);
65 }
66
67 if(!_run_mag && !_run_phase)
68 {
69 ARM_COMPUTE_ERROR("At least one output must be NOT NULL");
70 }
71
72 _gx = gx;
73 _gy = gy;
74 _magnitude = magnitude;
75 _phase = phase;
76
77 // Construct kernel name
78 std::set<std::string> build_opts = {};
79
80 // Add magnitude type
81 if(_run_mag)
82 {
83 switch(mag_type)
84 {
85 case MagnitudeType::L1NORM:
86 build_opts.insert("-DMAGNITUDE=1");
87 break;
88 case MagnitudeType::L2NORM:
89 build_opts.insert("-DMAGNITUDE=2");
90 break;
91 default:
92 ARM_COMPUTE_ERROR("Unsupported magnitude calculation type.");
93 build_opts.insert("-DMAGNITUDE=0");
94 break;
95 }
96 }
97
98 // Add phase type
99 if(_run_phase)
100 {
101 switch(phase_type)
102 {
103 case PhaseType::UNSIGNED:
104 build_opts.insert("-DPHASE=1");
105 break;
106 case PhaseType::SIGNED:
107 build_opts.insert("-DPHASE=2");
108 break;
109 default:
110 ARM_COMPUTE_ERROR("Unsupported phase calculation type.");
111 build_opts.insert("-DPHASE=0");
112 break;
113 }
114 }
115
116 // Add data_type
117 build_opts.insert("-DDATA_TYPE=" + get_cl_type_from_data_type(gx->info()->data_type()));
118
119 // Create kernel
Gary Antcliffefffbdbc2019-05-28 11:40:21 +0100120 const std::string kernel_name = std::string("magnitude_phase");
121 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122
123 // Configure kernel window
124 constexpr unsigned int num_elems_processed_per_iteration = 16;
125
126 Window win = calculate_max_window(*gx->info(), Steps(num_elems_processed_per_iteration));
127
128 AccessWindowHorizontal gx_access(gx->info(), 0, num_elems_processed_per_iteration);
129 AccessWindowHorizontal gy_access(gy->info(), 0, num_elems_processed_per_iteration);
130 AccessWindowHorizontal output_magnitude_access(magnitude == nullptr ? nullptr : magnitude->info(), 0, num_elems_processed_per_iteration);
131 AccessWindowHorizontal output_phase_access(phase == nullptr ? nullptr : phase->info(), 0, num_elems_processed_per_iteration);
132
133 update_window_and_padding(win,
134 gx_access, gy_access,
135 output_magnitude_access, output_phase_access);
136
137 ValidRegion valid_region = intersect_valid_regions(gx->info()->valid_region(),
138 gy->info()->valid_region());
139 output_magnitude_access.set_valid_region(win, valid_region);
140 output_phase_access.set_valid_region(win, valid_region);
141
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100142 ICLKernel::configure_internal(win);
Gary Antcliffefffbdbc2019-05-28 11:40:21 +0100143
144 // Set config_id for enabling LWS tuning
145 _config_id = kernel_name;
146 _config_id += "_";
147 _config_id += lower_string(string_from_data_type(gx->info()->data_type()));
148 _config_id += "_";
149 _config_id += support::cpp11::to_string(gx->info()->dimension(0));
150 _config_id += "_";
151 _config_id += support::cpp11::to_string(gx->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152}
153
154void CLMagnitudePhaseKernel::run(const Window &window, cl::CommandQueue &queue)
155{
156 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
157 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
158
159 Window slice = window.first_slice_window_2D();
160 do
161 {
162 unsigned int idx = 0;
163 add_2D_tensor_argument(idx, _gx, slice);
164 add_2D_tensor_argument(idx, _gy, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100165 add_2D_tensor_argument_if((_run_mag), idx, _magnitude, slice);
166 add_2D_tensor_argument_if((_run_phase), idx, _phase, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100167
Michele Di Giorgio6b9f3882019-07-01 16:37:04 +0100168 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169 }
170 while(window.slide_window_slice_2D(slice));
171}