blob: 5f82cd3fbeff09a02c41b83508d8c994238544a7 [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 +000038CLTuner::CLTuner(bool tune_new_kernels)
39 : real_clEnqueueNDRangeKernel(nullptr), _lws_table(), _queue(), _queue_profiler(), _kernel_event(), _tune_new_kernels(tune_new_kernels)
Gian Marcode691f02017-09-08 16:13:11 +010040{
41}
42
Anthony Barbierf5dcf792018-02-28 18:04:45 +000043bool CLTuner::kernel_event_is_set() const
44{
45 return _kernel_event() != nullptr;
46}
Gian Marco85e6f512018-02-01 16:57:48 +000047void CLTuner::set_cl_kernel_event(cl_event kernel_event)
48{
49 _kernel_event = kernel_event;
50}
51
Anthony Barbier8db83182018-02-27 13:08:00 +000052void CLTuner::set_tune_new_kernels(bool tune_new_kernels)
53{
54 _tune_new_kernels = tune_new_kernels;
55}
Anthony Barbier8b811952018-02-28 13:47:58 +000056bool CLTuner::tune_new_kernels() const
57{
58 return _tune_new_kernels;
59}
Anthony Barbier8db83182018-02-27 13:08:00 +000060
Georgios Pinitasc0d1c862018-03-23 15:13:15 +000061void CLTuner::tune_kernel_static(ICLKernel &kernel)
62{
63 ARM_COMPUTE_UNUSED(kernel);
64}
65
66void CLTuner::tune_kernel_dynamic(ICLKernel &kernel)
Gian Marcode691f02017-09-08 16:13:11 +010067{
Anthony Barbier8db83182018-02-27 13:08:00 +000068 // Get the configuration ID from the kernel
69 const std::string &config_id = kernel.config_id();
70
71 // 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
72 if(config_id != arm_compute::default_config_id)
Gian Marco85e6f512018-02-01 16:57:48 +000073 {
Anthony Barbier8db83182018-02-27 13:08:00 +000074 auto p = _lws_table.find(config_id);
75
76 if(p == _lws_table.end())
77 {
78 if(_tune_new_kernels)
79 {
80 // Find the optimal LWS for the kernel
81 cl::NDRange opt_lws = find_optimal_lws(kernel);
82
83 // Insert the optimal LWS in the table
84 add_lws_to_table(config_id, opt_lws);
85
86 // Set Local-Workgroup-Size
87 kernel.set_lws_hint(opt_lws);
88 }
89 }
90 else
91 {
92 // Set Local-Workgroup-Size
93 kernel.set_lws_hint(p->second);
94 }
95 }
96}
97
98void CLTuner::add_lws_to_table(const std::string &kernel_id, cl::NDRange optimal_lws)
99{
100 _lws_table.emplace(kernel_id, optimal_lws);
101}
102
103cl::NDRange CLTuner::find_optimal_lws(ICLKernel &kernel)
104{
105 if(real_clEnqueueNDRangeKernel == nullptr)
106 {
107 real_clEnqueueNDRangeKernel = CLSymbols::get().clEnqueueNDRangeKernel_ptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000108
109 // Get the default queue
110 _queue = CLScheduler::get().queue();
111
112 // Check if we can use the OpenCL timer with the default queue
113 cl_command_queue_properties props = _queue.getInfo<CL_QUEUE_PROPERTIES>();
114
115 if((props & CL_QUEUE_PROFILING_ENABLE) == 0)
116 {
117 // Set the queue for profiling
118 _queue_profiler = cl::CommandQueue(CLScheduler::get().context(), props | CL_QUEUE_PROFILING_ENABLE);
119 }
120 else
121 {
122 _queue_profiler = _queue;
123 }
124 }
Gian Marco85e6f512018-02-01 16:57:48 +0000125 // Start intercepting enqueues:
Anthony Barbier48c19f12018-04-20 11:31:52 +0100126 auto interceptor = [this](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,
127 const cl_event * event_wait_list, cl_event * event)
128 {
129 ARM_COMPUTE_ERROR_ON_MSG(event != nullptr, "Not supported");
130 ARM_COMPUTE_UNUSED(event);
131 if(this->kernel_event_is_set())
132 {
133 // 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.
134 return CL_SUCCESS;
135 }
136 cl_event tmp;
137 cl_int retval = this->real_clEnqueueNDRangeKernel(command_queue, kernel, work_dim, gwo, gws, lws, num_events_in_wait_list, event_wait_list, &tmp);
138
139 // Set OpenCL event
140 this->set_cl_kernel_event(tmp);
141
142 return retval;
143 };
144 CLSymbols::get().clEnqueueNDRangeKernel_ptr = interceptor;
Gian Marcode691f02017-09-08 16:13:11 +0100145
Gian Marco85e6f512018-02-01 16:57:48 +0000146 cl_ulong min_exec_time = std::numeric_limits<cl_ulong>::max();
Gian Marcode691f02017-09-08 16:13:11 +0100147
Gian Marco85e6f512018-02-01 16:57:48 +0000148 cl::NDRange opt_lws = cl::NullRange;
Gian Marcode691f02017-09-08 16:13:11 +0100149
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000150 const int x_step = std::max(1, kernel.window().x().step());
151 const int y_step = std::max(1, kernel.window().y().step());
152 const int z_step = std::max(1, kernel.window().z().step());
153 const int x_end = kernel.window().x().end() - kernel.window().x().start() / x_step > 1 ? 16 : 1;
154 const int y_end = kernel.window().y().end() - kernel.window().y().start() / y_step > 1 ? 16 : 1;
155 const int z_end = kernel.window().z().end() - kernel.window().z().start() / z_step > 1 ? 8 : 1;
156
Gian Marco85e6f512018-02-01 16:57:48 +0000157 // First run using the default LWS
158 {
159 cl::NDRange lws_test = cl::NullRange;
160
161 kernel.set_lws_hint(lws_test);
162
163 // Run the kernel
164 kernel.run(kernel.window(), _queue_profiler);
165
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000166 _queue_profiler.finish();
Gian Marco85e6f512018-02-01 16:57:48 +0000167
168 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
169 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
170 const cl_ulong diff = end - start;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000171 _kernel_event = nullptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000172
173 min_exec_time = diff;
174 }
175
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000176 for(int z = 1; z <= z_end; ++z)
Gian Marcode691f02017-09-08 16:13:11 +0100177 {
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000178 for(int y = 1; y <= y_end; ++y)
Gian Marcode691f02017-09-08 16:13:11 +0100179 {
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000180 for(int x = 1; x <= x_end; ++x)
Gian Marcode691f02017-09-08 16:13:11 +0100181 {
Gian Marco85e6f512018-02-01 16:57:48 +0000182 cl::NDRange lws_test = cl::NDRange(x, y, z);
183
184 const bool invalid_lws = (x * y * z > static_cast<int>(kernel.get_max_workgroup_size())) || (x == 1 && y == 1 && z == 1);
185
186 if(invalid_lws)
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000187 {
188 continue;
189 }
190
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000191 //Set the Local-Workgroup-Size
192 kernel.set_lws_hint(lws_test);
193
Gian Marco85e6f512018-02-01 16:57:48 +0000194 // Run the kernel
195 kernel.run(kernel.window(), _queue_profiler);
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000196
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000197 _queue_profiler.finish();
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000198
Gian Marco85e6f512018-02-01 16:57:48 +0000199 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
200 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
201 const cl_ulong diff = end - start;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000202 _kernel_event = nullptr;
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000203
204 // Check the execution time
Gian Marco85e6f512018-02-01 16:57:48 +0000205 if(diff < min_exec_time)
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000206 {
Gian Marco85e6f512018-02-01 16:57:48 +0000207 min_exec_time = diff;
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000208 opt_lws = cl::NDRange(x, y, z);
209 }
Gian Marcode691f02017-09-08 16:13:11 +0100210 }
211 }
212 }
213
Gian Marco85e6f512018-02-01 16:57:48 +0000214 // Restore real function
Anthony Barbier8db83182018-02-27 13:08:00 +0000215 CLSymbols::get().clEnqueueNDRangeKernel_ptr = real_clEnqueueNDRangeKernel;
216
Gian Marcode691f02017-09-08 16:13:11 +0100217 return opt_lws;
218}
219
220void CLTuner::import_lws_table(const std::unordered_map<std::string, cl::NDRange> &lws_table)
221{
222 _lws_table.clear();
223 _lws_table = lws_table;
224}
225
Anthony Barbier8b811952018-02-28 13:47:58 +0000226const std::unordered_map<std::string, cl::NDRange> &CLTuner::lws_table() const
Gian Marcode691f02017-09-08 16:13:11 +0100227{
228 return _lws_table;
Gian Marco85e6f512018-02-01 16:57:48 +0000229}
230
Anthony Barbier8b811952018-02-28 13:47:58 +0000231void CLTuner::load_from_file(const std::string &filename)
Gian Marco85e6f512018-02-01 16:57:48 +0000232{
Anthony Barbier8b811952018-02-28 13:47:58 +0000233 std::ifstream fs;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000234 fs.exceptions(std::ifstream::badbit);
Anthony Barbier8b811952018-02-28 13:47:58 +0000235 fs.open(filename, std::ios::in);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000236 if(!fs.is_open())
Anthony Barbier8db83182018-02-27 13:08:00 +0000237 {
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000238 ARM_COMPUTE_ERROR("Failed to open '%s' (%s [%d])", filename.c_str(), strerror(errno), errno);
239 }
240 std::string line;
241 while(!std::getline(fs, line).fail())
242 {
243 std::istringstream ss(line);
244 std::string token;
245 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000246 {
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000247 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());
248 }
249 std::string kernel_id = token;
250 cl::NDRange lws(1, 1, 1);
251 for(int i = 0; i < 3; i++)
252 {
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000253 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000254 {
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000255 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 +0000256 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000257 lws.get()[i] = support::cpp11::stoi(token);
Anthony Barbier8db83182018-02-27 13:08:00 +0000258 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000259
260 // If all dimensions are 0: reset to NullRange (i.e nullptr)
261 if(lws[0] == 0 && lws[1] == 0 && lws[2] == 0)
262 {
263 lws = cl::NullRange;
264 }
265 add_lws_to_table(kernel_id, lws);
Anthony Barbier8db83182018-02-27 13:08:00 +0000266 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000267 fs.close();
Gian Marco85e6f512018-02-01 16:57:48 +0000268}
269
Anthony Barbier8b811952018-02-28 13:47:58 +0000270void CLTuner::save_to_file(const std::string &filename) const
Gian Marco85e6f512018-02-01 16:57:48 +0000271{
Anthony Barbier8b811952018-02-28 13:47:58 +0000272 std::ofstream fs;
273 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
274 fs.open(filename, std::ios::out);
275 for(auto kernel_data : _lws_table)
Anthony Barbier8db83182018-02-27 13:08:00 +0000276 {
277 fs << kernel_data.first << ";" << kernel_data.second[0] << ";" << kernel_data.second[1] << ";" << kernel_data.second[2] << std::endl;
278 }
279 fs.close();
280}