blob: 17a62ab46e0969ad32fc51f89ecd2661418b7e4d [file] [log] [blame]
Gian Marcode691f02017-09-08 16:13:11 +01001/*
Gian Marcoc78d4bc2018-01-25 13:49:44 +00002 * Copyright (c) 2017-2018 ARM Limited.
Gian Marcode691f02017-09-08 16:13:11 +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/runtime/CL/CLTuner.h"
25
26#include "arm_compute/core/CL/ICLKernel.h"
Gian Marco85e6f512018-02-01 16:57:48 +000027#include "arm_compute/core/Error.h"
Gian Marcode691f02017-09-08 16:13:11 +010028#include "arm_compute/runtime/CL/CLScheduler.h"
29
Anthony Barbier317fa7f2018-03-01 10:11:22 +000030#include <cerrno>
Anthony Barbier8db83182018-02-27 13:08:00 +000031#include <fstream>
32#include <iostream>
Gian Marcode691f02017-09-08 16:13:11 +010033#include <limits>
34#include <string>
35
36using namespace arm_compute;
37
Anthony Barbier8db83182018-02-27 13:08:00 +000038namespace
39{
40/* Function to be used to intercept kernel enqueues and store their OpenCL Event */
41class Interceptor
42{
43public:
44 explicit Interceptor(CLTuner &tuner);
45
46 /** clEnqueueNDRangeKernel interface
47 *
48 * @param[in] command_queue A valid command-queue. The kernel will be queued for execution on the device associated with command_queue.
49 * @param[in] kernel A valid kernel object. The OpenCL context associated with kernel and command_queue must be the same.
50 * @param[in] work_dim The number of dimensions used to specify the global work-items and work-items in the work-group. work_dim must be greater than zero and less than or equal to CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS.
51 * @param[in] gwo Global-Workgroup-Offset. It can be used to specify an array of work_dim unsigned values that describe the offset used to calculate the global ID of a work-item. If global_work_offset is NULL, the global IDs start at offset (0, 0, ... 0).
52 * @param[in] gws Global-Workgroup-Size. Points to an array of work_dim unsigned values that describe the number of global work-items in work_dim dimensions that will execute the kernel function.
53 * @param[in] lws Local-Workgroup-Size. Points to an array of work_dim unsigned values that describe the number of work-items that make up a work-group
54 * @param[in] num_events_in_wait_list Number of events in the waiting list
55 * @param[in] event_wait_list Event waiting list
56 * @param[in] event OpenCL kernel event
57 *
58 * @return the OpenCL status
59 */
60 cl_int operator()(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, const size_t *gwo, const size_t *gws, const size_t *lws, cl_uint num_events_in_wait_list,
61 const cl_event *event_wait_list, cl_event *event);
62
63private:
64 CLTuner &_tuner;
65};
66
67Interceptor::Interceptor(CLTuner &tuner)
68 : _tuner(tuner)
69{
70}
71
72cl_int Interceptor::operator()(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, const size_t *gwo, const size_t *gws, const size_t *lws, cl_uint num_events_in_wait_list,
73 const cl_event *event_wait_list, cl_event *event)
74{
75 ARM_COMPUTE_ERROR_ON_MSG(event != nullptr, "Not supported");
76 ARM_COMPUTE_UNUSED(event);
Anthony Barbierf5dcf792018-02-28 18:04:45 +000077 if(_tuner.kernel_event_is_set())
78 {
79 // If the event is already set it means the kernel enqueue is sliced: given that we only time the first slice we can save time by skipping the other enqueues.
80 return CL_SUCCESS;
81 }
Anthony Barbier8db83182018-02-27 13:08:00 +000082 cl_event tmp;
83 cl_int retval = _tuner.real_clEnqueueNDRangeKernel(command_queue, kernel, work_dim, gwo, gws, lws, num_events_in_wait_list, event_wait_list, &tmp);
84
85 // Set OpenCL event
86 _tuner.set_cl_kernel_event(tmp);
87
88 return retval;
89}
90
91} // namespace
92
93CLTuner::CLTuner(bool tune_new_kernels)
94 : real_clEnqueueNDRangeKernel(nullptr), _lws_table(), _queue(), _queue_profiler(), _kernel_event(), _tune_new_kernels(tune_new_kernels)
Gian Marcode691f02017-09-08 16:13:11 +010095{
96}
97
Anthony Barbierf5dcf792018-02-28 18:04:45 +000098bool CLTuner::kernel_event_is_set() const
99{
100 return _kernel_event() != nullptr;
101}
Gian Marco85e6f512018-02-01 16:57:48 +0000102void CLTuner::set_cl_kernel_event(cl_event kernel_event)
103{
104 _kernel_event = kernel_event;
105}
106
Anthony Barbier8db83182018-02-27 13:08:00 +0000107void CLTuner::set_tune_new_kernels(bool tune_new_kernels)
108{
109 _tune_new_kernels = tune_new_kernels;
110}
Anthony Barbier8b811952018-02-28 13:47:58 +0000111bool CLTuner::tune_new_kernels() const
112{
113 return _tune_new_kernels;
114}
Anthony Barbier8db83182018-02-27 13:08:00 +0000115
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000116void CLTuner::tune_kernel_static(ICLKernel &kernel)
117{
118 ARM_COMPUTE_UNUSED(kernel);
119}
120
121void CLTuner::tune_kernel_dynamic(ICLKernel &kernel)
Gian Marcode691f02017-09-08 16:13:11 +0100122{
Anthony Barbier8db83182018-02-27 13:08:00 +0000123 // Get the configuration ID from the kernel
124 const std::string &config_id = kernel.config_id();
125
126 // Check if we need to find the Optimal LWS. If config_id is equal to default_config_id, the kernel does not require to be tuned
127 if(config_id != arm_compute::default_config_id)
Gian Marco85e6f512018-02-01 16:57:48 +0000128 {
Anthony Barbier8db83182018-02-27 13:08:00 +0000129 auto p = _lws_table.find(config_id);
130
131 if(p == _lws_table.end())
132 {
133 if(_tune_new_kernels)
134 {
135 // Find the optimal LWS for the kernel
136 cl::NDRange opt_lws = find_optimal_lws(kernel);
137
138 // Insert the optimal LWS in the table
139 add_lws_to_table(config_id, opt_lws);
140
141 // Set Local-Workgroup-Size
142 kernel.set_lws_hint(opt_lws);
143 }
144 }
145 else
146 {
147 // Set Local-Workgroup-Size
148 kernel.set_lws_hint(p->second);
149 }
150 }
151}
152
153void CLTuner::add_lws_to_table(const std::string &kernel_id, cl::NDRange optimal_lws)
154{
155 _lws_table.emplace(kernel_id, optimal_lws);
156}
157
158cl::NDRange CLTuner::find_optimal_lws(ICLKernel &kernel)
159{
160 if(real_clEnqueueNDRangeKernel == nullptr)
161 {
162 real_clEnqueueNDRangeKernel = CLSymbols::get().clEnqueueNDRangeKernel_ptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000163
164 // Get the default queue
165 _queue = CLScheduler::get().queue();
166
167 // Check if we can use the OpenCL timer with the default queue
168 cl_command_queue_properties props = _queue.getInfo<CL_QUEUE_PROPERTIES>();
169
170 if((props & CL_QUEUE_PROFILING_ENABLE) == 0)
171 {
172 // Set the queue for profiling
173 _queue_profiler = cl::CommandQueue(CLScheduler::get().context(), props | CL_QUEUE_PROFILING_ENABLE);
174 }
175 else
176 {
177 _queue_profiler = _queue;
178 }
179 }
Gian Marco85e6f512018-02-01 16:57:48 +0000180 // Start intercepting enqueues:
181 CLSymbols::get().clEnqueueNDRangeKernel_ptr = Interceptor(*this);
Gian Marcode691f02017-09-08 16:13:11 +0100182
Gian Marco85e6f512018-02-01 16:57:48 +0000183 cl_ulong min_exec_time = std::numeric_limits<cl_ulong>::max();
Gian Marcode691f02017-09-08 16:13:11 +0100184
Gian Marco85e6f512018-02-01 16:57:48 +0000185 cl::NDRange opt_lws = cl::NullRange;
Gian Marcode691f02017-09-08 16:13:11 +0100186
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000187 const int x_step = std::max(1, kernel.window().x().step());
188 const int y_step = std::max(1, kernel.window().y().step());
189 const int z_step = std::max(1, kernel.window().z().step());
190 const int x_end = kernel.window().x().end() - kernel.window().x().start() / x_step > 1 ? 16 : 1;
191 const int y_end = kernel.window().y().end() - kernel.window().y().start() / y_step > 1 ? 16 : 1;
192 const int z_end = kernel.window().z().end() - kernel.window().z().start() / z_step > 1 ? 8 : 1;
193
Gian Marco85e6f512018-02-01 16:57:48 +0000194 // First run using the default LWS
195 {
196 cl::NDRange lws_test = cl::NullRange;
197
198 kernel.set_lws_hint(lws_test);
199
200 // Run the kernel
201 kernel.run(kernel.window(), _queue_profiler);
202
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000203 _queue_profiler.finish();
Gian Marco85e6f512018-02-01 16:57:48 +0000204
205 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
206 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
207 const cl_ulong diff = end - start;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000208 _kernel_event = nullptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000209
210 min_exec_time = diff;
211 }
212
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000213 for(int z = 1; z <= z_end; ++z)
Gian Marcode691f02017-09-08 16:13:11 +0100214 {
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000215 for(int y = 1; y <= y_end; ++y)
Gian Marcode691f02017-09-08 16:13:11 +0100216 {
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000217 for(int x = 1; x <= x_end; ++x)
Gian Marcode691f02017-09-08 16:13:11 +0100218 {
Gian Marco85e6f512018-02-01 16:57:48 +0000219 cl::NDRange lws_test = cl::NDRange(x, y, z);
220
221 const bool invalid_lws = (x * y * z > static_cast<int>(kernel.get_max_workgroup_size())) || (x == 1 && y == 1 && z == 1);
222
223 if(invalid_lws)
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000224 {
225 continue;
226 }
227
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000228 //Set the Local-Workgroup-Size
229 kernel.set_lws_hint(lws_test);
230
Gian Marco85e6f512018-02-01 16:57:48 +0000231 // Run the kernel
232 kernel.run(kernel.window(), _queue_profiler);
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000233
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000234 _queue_profiler.finish();
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000235
Gian Marco85e6f512018-02-01 16:57:48 +0000236 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
237 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
238 const cl_ulong diff = end - start;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000239 _kernel_event = nullptr;
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000240
241 // Check the execution time
Gian Marco85e6f512018-02-01 16:57:48 +0000242 if(diff < min_exec_time)
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000243 {
Gian Marco85e6f512018-02-01 16:57:48 +0000244 min_exec_time = diff;
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000245 opt_lws = cl::NDRange(x, y, z);
246 }
Gian Marcode691f02017-09-08 16:13:11 +0100247 }
248 }
249 }
250
Gian Marco85e6f512018-02-01 16:57:48 +0000251 // Restore real function
Anthony Barbier8db83182018-02-27 13:08:00 +0000252 CLSymbols::get().clEnqueueNDRangeKernel_ptr = real_clEnqueueNDRangeKernel;
253
Gian Marcode691f02017-09-08 16:13:11 +0100254 return opt_lws;
255}
256
257void CLTuner::import_lws_table(const std::unordered_map<std::string, cl::NDRange> &lws_table)
258{
259 _lws_table.clear();
260 _lws_table = lws_table;
261}
262
Anthony Barbier8b811952018-02-28 13:47:58 +0000263const std::unordered_map<std::string, cl::NDRange> &CLTuner::lws_table() const
Gian Marcode691f02017-09-08 16:13:11 +0100264{
265 return _lws_table;
Gian Marco85e6f512018-02-01 16:57:48 +0000266}
267
Anthony Barbier8b811952018-02-28 13:47:58 +0000268void CLTuner::load_from_file(const std::string &filename)
Gian Marco85e6f512018-02-01 16:57:48 +0000269{
Anthony Barbier8b811952018-02-28 13:47:58 +0000270 std::ifstream fs;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000271 fs.exceptions(std::ifstream::badbit);
Anthony Barbier8b811952018-02-28 13:47:58 +0000272 fs.open(filename, std::ios::in);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000273 if(!fs.is_open())
Anthony Barbier8db83182018-02-27 13:08:00 +0000274 {
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000275 ARM_COMPUTE_ERROR("Failed to open '%s' (%s [%d])", filename.c_str(), strerror(errno), errno);
276 }
277 std::string line;
278 while(!std::getline(fs, line).fail())
279 {
280 std::istringstream ss(line);
281 std::string token;
282 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000283 {
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000284 ARM_COMPUTE_ERROR("Malformed row '%s' in %s (Should be of the form 'kernel_id;lws[0];lws[1];lws[2]')", ss.str().c_str(), filename.c_str());
285 }
286 std::string kernel_id = token;
287 cl::NDRange lws(1, 1, 1);
288 for(int i = 0; i < 3; i++)
289 {
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000290 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000291 {
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000292 ARM_COMPUTE_ERROR("Malformed row '%s' in %s (Should be of the form 'kernel_id;lws[0];lws[1];lws[2]')", ss.str().c_str(), filename.c_str());
Anthony Barbier8db83182018-02-27 13:08:00 +0000293 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000294 lws.get()[i] = support::cpp11::stoi(token);
Anthony Barbier8db83182018-02-27 13:08:00 +0000295 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000296
297 // If all dimensions are 0: reset to NullRange (i.e nullptr)
298 if(lws[0] == 0 && lws[1] == 0 && lws[2] == 0)
299 {
300 lws = cl::NullRange;
301 }
302 add_lws_to_table(kernel_id, lws);
Anthony Barbier8db83182018-02-27 13:08:00 +0000303 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000304 fs.close();
Gian Marco85e6f512018-02-01 16:57:48 +0000305}
306
Anthony Barbier8b811952018-02-28 13:47:58 +0000307void CLTuner::save_to_file(const std::string &filename) const
Gian Marco85e6f512018-02-01 16:57:48 +0000308{
Anthony Barbier8b811952018-02-28 13:47:58 +0000309 std::ofstream fs;
310 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
311 fs.open(filename, std::ios::out);
312 for(auto kernel_data : _lws_table)
Anthony Barbier8db83182018-02-27 13:08:00 +0000313 {
314 fs << kernel_data.first << ";" << kernel_data.second[0] << ";" << kernel_data.second[1] << ";" << kernel_data.second[2] << std::endl;
315 }
316 fs.close();
317}