blob: 906021790ef9a92a4868cf6ecb3f3c9be445ae77 [file] [log] [blame]
Gian Marcode691f02017-09-08 16:13:11 +01001/*
Manuel Bottinib56c1752020-11-18 17:56:30 +00002 * Copyright (c) 2017-2021 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"
Manuel Bottinib56c1752020-11-18 17:56:30 +000025#include "arm_compute/runtime/CL/tuners/CLTuningParametersList.h"
Gian Marcode691f02017-09-08 16:13:11 +010026
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"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010029#include "src/core/CL/ICLKernel.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000030#include "support/StringSupport.h"
Gian Marcode691f02017-09-08 16:13:11 +010031
Anthony Barbier317fa7f2018-03-01 10:11:22 +000032#include <cerrno>
Anthony Barbier8db83182018-02-27 13:08:00 +000033#include <fstream>
Gian Marcode691f02017-09-08 16:13:11 +010034#include <limits>
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010035#include <memory>
Gian Marcode691f02017-09-08 16:13:11 +010036#include <string>
37
Gian Marco Iodicea74923c2019-01-31 17:06:54 +000038namespace arm_compute
39{
Manuel Bottinib56c1752020-11-18 17:56:30 +000040CLTuner::CLTuner(bool tune_new_kernels, CLTuningInfo tuning_info)
41 : real_clEnqueueNDRangeKernel(nullptr), _tuning_params_table(), _lws_table(), _kernel_event(), _tune_new_kernels(tune_new_kernels), _tuning_info(tuning_info), _tuner_mode(CLTunerMode::NORMAL)
Gian Marcode691f02017-09-08 16:13:11 +010042{
43}
44
Anthony Barbierf5dcf792018-02-28 18:04:45 +000045bool CLTuner::kernel_event_is_set() const
46{
47 return _kernel_event() != nullptr;
48}
Gian Marco85e6f512018-02-01 16:57:48 +000049void CLTuner::set_cl_kernel_event(cl_event kernel_event)
50{
51 _kernel_event = kernel_event;
52}
53
Anthony Barbier8db83182018-02-27 13:08:00 +000054void CLTuner::set_tune_new_kernels(bool tune_new_kernels)
55{
56 _tune_new_kernels = tune_new_kernels;
57}
Anthony Barbier8b811952018-02-28 13:47:58 +000058bool CLTuner::tune_new_kernels() const
59{
60 return _tune_new_kernels;
61}
Anthony Barbier8db83182018-02-27 13:08:00 +000062
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010063void CLTuner::set_tuner_mode(CLTunerMode mode)
64{
65 _tuner_mode = mode;
66}
Manuel Bottinib56c1752020-11-18 17:56:30 +000067
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010068CLTunerMode CLTuner::get_tuner_mode() const
69{
70 return _tuner_mode;
71}
72
Georgios Pinitasc0d1c862018-03-23 15:13:15 +000073void CLTuner::tune_kernel_static(ICLKernel &kernel)
74{
75 ARM_COMPUTE_UNUSED(kernel);
76}
77
78void CLTuner::tune_kernel_dynamic(ICLKernel &kernel)
Gian Marcode691f02017-09-08 16:13:11 +010079{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010080 ITensorPack pack;
81 tune_kernel_dynamic(kernel, pack);
Georgios Pinitas9c82e012020-07-17 12:47:56 +010082}
83
Georgios Pinitas0499dff2020-07-31 22:21:38 +010084void CLTuner::tune_kernel_dynamic(ICLKernel &kernel, ITensorPack &tensors)
Georgios Pinitas9c82e012020-07-17 12:47:56 +010085{
Giorgio Arena5d42b462019-07-26 15:54:20 +010086 // Get the configuration ID from the kernel and append GPU target name and number of available compute units
87 const std::string config_id = kernel.config_id() + "_" + string_from_target(kernel.get_target()) + "_MP" + support::cpp11::to_string(CLKernelLibrary::get().get_num_compute_units());
Anthony Barbier8db83182018-02-27 13:08:00 +000088
Giorgio Arena5d42b462019-07-26 15:54:20 +010089 // Check if we need to find the Optimal LWS. If the kernel's config_id is equal to default_config_id, the kernel does not require to be tuned
90 if(kernel.config_id() != arm_compute::default_config_id)
Gian Marco85e6f512018-02-01 16:57:48 +000091 {
Manuel Bottinib56c1752020-11-18 17:56:30 +000092 auto p = _tuning_params_table.find(config_id);
Anthony Barbier8db83182018-02-27 13:08:00 +000093
Manuel Bottinib56c1752020-11-18 17:56:30 +000094 if(p == _tuning_params_table.end())
Anthony Barbier8db83182018-02-27 13:08:00 +000095 {
96 if(_tune_new_kernels)
97 {
98 // Find the optimal LWS for the kernel
Manuel Bottinib56c1752020-11-18 17:56:30 +000099 CLTuningParams opt_tuning_params = find_optimal_tuning_params(kernel, tensors);
Anthony Barbier8db83182018-02-27 13:08:00 +0000100
101 // Insert the optimal LWS in the table
Manuel Bottinib56c1752020-11-18 17:56:30 +0000102 add_tuning_params(config_id, opt_tuning_params);
Anthony Barbier8db83182018-02-27 13:08:00 +0000103
104 // Set Local-Workgroup-Size
Manuel Bottinib56c1752020-11-18 17:56:30 +0000105 kernel.set_lws_hint(opt_tuning_params.get_lws());
Anthony Barbier8db83182018-02-27 13:08:00 +0000106 }
107 }
108 else
109 {
110 // Set Local-Workgroup-Size
Manuel Bottinib56c1752020-11-18 17:56:30 +0000111 kernel.set_lws_hint(p->second.get_lws());
Anthony Barbier8db83182018-02-27 13:08:00 +0000112 }
113 }
114}
115
116void CLTuner::add_lws_to_table(const std::string &kernel_id, cl::NDRange optimal_lws)
117{
Manuel Bottinib56c1752020-11-18 17:56:30 +0000118 add_tuning_params(kernel_id, CLTuningParams(optimal_lws));
Anthony Barbier8db83182018-02-27 13:08:00 +0000119}
120
Manuel Bottinib56c1752020-11-18 17:56:30 +0000121void CLTuner::add_tuning_params(const std::string &kernel_id, CLTuningParams optimal_tuning_params)
122{
123 _tuning_params_table.emplace(kernel_id, optimal_tuning_params);
124}
125
126CLTuningParams CLTuner::find_optimal_tuning_params(ICLKernel &kernel, ITensorPack &tensors)
Anthony Barbier8db83182018-02-27 13:08:00 +0000127{
Georgios Pinitas4632e5e2019-02-06 14:47:59 +0000128 // Profiling queue
129 cl::CommandQueue queue_profiler;
130
131 // Extract real OpenCL function to intercept
Anthony Barbier8db83182018-02-27 13:08:00 +0000132 if(real_clEnqueueNDRangeKernel == nullptr)
133 {
134 real_clEnqueueNDRangeKernel = CLSymbols::get().clEnqueueNDRangeKernel_ptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000135 }
Georgios Pinitas4632e5e2019-02-06 14:47:59 +0000136
137 // Get the default queue
138 cl::CommandQueue default_queue = CLScheduler::get().queue();
139
140 // Check if we can use the OpenCL timer with the default queue
141 cl_command_queue_properties props = default_queue.getInfo<CL_QUEUE_PROPERTIES>();
142
143 if((props & CL_QUEUE_PROFILING_ENABLE) == 0)
144 {
145 // Set the queue for profiling
146 queue_profiler = cl::CommandQueue(CLScheduler::get().context(), props | CL_QUEUE_PROFILING_ENABLE);
147 }
148 else
149 {
150 queue_profiler = default_queue;
151 }
152
Gian Marco85e6f512018-02-01 16:57:48 +0000153 // Start intercepting enqueues:
Anthony Barbier48c19f12018-04-20 11:31:52 +0100154 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,
155 const cl_event * event_wait_list, cl_event * event)
156 {
Anthony Barbier48c19f12018-04-20 11:31:52 +0100157 if(this->kernel_event_is_set())
158 {
159 // 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.
160 return CL_SUCCESS;
161 }
162 cl_event tmp;
163 cl_int retval = this->real_clEnqueueNDRangeKernel(command_queue, kernel, work_dim, gwo, gws, lws, num_events_in_wait_list, event_wait_list, &tmp);
164
165 // Set OpenCL event
166 this->set_cl_kernel_event(tmp);
167
Vidhya Sudhan Loganathanca65af32019-02-07 11:14:42 +0000168 if(event != nullptr)
169 {
170 //return cl_event from the intercepted call
171 clRetainEvent(tmp);
172 *event = tmp;
173 }
Anthony Barbier48c19f12018-04-20 11:31:52 +0100174 return retval;
175 };
176 CLSymbols::get().clEnqueueNDRangeKernel_ptr = interceptor;
Gian Marcode691f02017-09-08 16:13:11 +0100177
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100178 cl::NDRange gws = ICLKernel::gws_from_window(kernel.window());
Gian Marcode691f02017-09-08 16:13:11 +0100179
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100180 // Run the kernel with default lws to be used as baseline
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100181 const bool inject_memory = !tensors.empty();
182 inject_memory ? kernel.run_op(tensors, kernel.window(), queue_profiler) : kernel.run(kernel.window(), queue_profiler);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100183
184 queue_profiler.finish();
185
186 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
187 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
188 cl_ulong min_exec_time = end - start;
189 _kernel_event = nullptr;
190
Gian Marco85e6f512018-02-01 16:57:48 +0000191 cl::NDRange opt_lws = cl::NullRange;
Gian Marcode691f02017-09-08 16:13:11 +0100192
Manuel Bottinib56c1752020-11-18 17:56:30 +0000193 // Construct the list of tuning parameters values to be tested based on the tuner mode.
194 auto lws_list = cl_tuner::get_tuning_parameters_list(_tuner_mode, gws);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100195 for(size_t i = 0; i < lws_list->size(); ++i)
Gian Marco85e6f512018-02-01 16:57:48 +0000196 {
Manuel Bottinib56c1752020-11-18 17:56:30 +0000197 cl::NDRange lws_test = (*lws_list)[i].get_lws();
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100198 auto x = lws_test[0];
199 auto y = lws_test[1];
200 auto z = lws_test[2];
Gian Marco Iodicedeaed2d2019-05-14 17:11:53 +0100201 const bool invalid_lws = (x * y * z > kernel.get_max_workgroup_size()) || (x == 1 && y == 1 && z == 1);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100202
203 if(invalid_lws)
Gian Marcode691f02017-09-08 16:13:11 +0100204 {
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100205 continue;
206 }
Gian Marco85e6f512018-02-01 16:57:48 +0000207
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100208 //Set the Local-Workgroup-Size
209 kernel.set_lws_hint(lws_test);
Gian Marco Iodicea74923c2019-01-31 17:06:54 +0000210
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100211 // Run the kernel
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100212 inject_memory ? kernel.run_op(tensors, kernel.window(), queue_profiler) : kernel.run(kernel.window(), queue_profiler);
Gian Marco85e6f512018-02-01 16:57:48 +0000213
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100214 queue_profiler.finish();
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000215
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100216 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
217 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
218 const cl_ulong diff = end - start;
219 _kernel_event = nullptr;
Gian Marco Iodicedeaed2d2019-05-14 17:11:53 +0100220
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100221 // Check the execution time
222 if(diff < min_exec_time)
223 {
224 min_exec_time = diff;
225 opt_lws = cl::NDRange(x, y, z);
Gian Marcode691f02017-09-08 16:13:11 +0100226 }
227 }
228
Gian Marco85e6f512018-02-01 16:57:48 +0000229 // Restore real function
Anthony Barbier8db83182018-02-27 13:08:00 +0000230 CLSymbols::get().clEnqueueNDRangeKernel_ptr = real_clEnqueueNDRangeKernel;
Manuel Bottinib56c1752020-11-18 17:56:30 +0000231 return CLTuningParams(opt_lws);
Gian Marcode691f02017-09-08 16:13:11 +0100232}
233
234void CLTuner::import_lws_table(const std::unordered_map<std::string, cl::NDRange> &lws_table)
235{
Manuel Bottinib56c1752020-11-18 17:56:30 +0000236 _tuning_params_table.clear();
237 for(auto && params : lws_table)
238 {
239 add_tuning_params(params.first, CLTuningParams(params.second));
240 }
Gian Marcode691f02017-09-08 16:13:11 +0100241}
242
Manuel Bottinib56c1752020-11-18 17:56:30 +0000243const std::unordered_map<std::string, cl::NDRange> &CLTuner::lws_table()
Gian Marcode691f02017-09-08 16:13:11 +0100244{
Manuel Bottinib56c1752020-11-18 17:56:30 +0000245 _lws_table.clear();
246 for(auto && params : _tuning_params_table)
247 {
248 _lws_table.emplace(params.first, params.second.get_lws());
249 }
Gian Marcode691f02017-09-08 16:13:11 +0100250 return _lws_table;
Gian Marco85e6f512018-02-01 16:57:48 +0000251}
252
Manuel Bottinib56c1752020-11-18 17:56:30 +0000253const std::unordered_map<std::string, CLTuningParams> &CLTuner::tuning_params_table() const
254{
255 return _tuning_params_table;
256}
257
258void CLTuner::import_tuning_params(const std::unordered_map<std::string, CLTuningParams> &tuning_params_table)
259{
260 _tuning_params_table.clear();
261 _tuning_params_table = tuning_params_table;
262}
263
Anthony Barbier8b811952018-02-28 13:47:58 +0000264void CLTuner::load_from_file(const std::string &filename)
Gian Marco85e6f512018-02-01 16:57:48 +0000265{
Anthony Barbier8b811952018-02-28 13:47:58 +0000266 std::ifstream fs;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000267 fs.exceptions(std::ifstream::badbit);
Anthony Barbier8b811952018-02-28 13:47:58 +0000268 fs.open(filename, std::ios::in);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000269 if(!fs.is_open())
Anthony Barbier8db83182018-02-27 13:08:00 +0000270 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100271 ARM_COMPUTE_ERROR_VAR("Failed to open '%s' (%s [%d])", filename.c_str(), strerror(errno), errno);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000272 }
273 std::string line;
274 while(!std::getline(fs, line).fail())
275 {
276 std::istringstream ss(line);
277 std::string token;
278 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000279 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100280 ARM_COMPUTE_ERROR_VAR("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 Barbier317fa7f2018-03-01 10:11:22 +0000281 }
282 std::string kernel_id = token;
283 cl::NDRange lws(1, 1, 1);
284 for(int i = 0; i < 3; i++)
285 {
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000286 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000287 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100288 ARM_COMPUTE_ERROR_VAR("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 +0000289 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000290 lws.get()[i] = support::cpp11::stoi(token);
Anthony Barbier8db83182018-02-27 13:08:00 +0000291 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000292
293 // If all dimensions are 0: reset to NullRange (i.e nullptr)
294 if(lws[0] == 0 && lws[1] == 0 && lws[2] == 0)
295 {
296 lws = cl::NullRange;
297 }
Manuel Bottinib56c1752020-11-18 17:56:30 +0000298 add_tuning_params(kernel_id, lws);
Anthony Barbier8db83182018-02-27 13:08:00 +0000299 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000300 fs.close();
Manuel Bottinib56c1752020-11-18 17:56:30 +0000301 _tuning_info.tune_lws = true;
Gian Marco85e6f512018-02-01 16:57:48 +0000302}
303
Manuel Bottinib56c1752020-11-18 17:56:30 +0000304bool CLTuner::save_to_file(const std::string &filename) const
Gian Marco85e6f512018-02-01 16:57:48 +0000305{
Manuel Bottinib56c1752020-11-18 17:56:30 +0000306 if(!_tune_new_kernels || _tuning_params_table.empty() || filename.empty())
307 {
308 return false;
309 }
310
Anthony Barbier8b811952018-02-28 13:47:58 +0000311 std::ofstream fs;
312 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
313 fs.open(filename, std::ios::out);
Manuel Bottinib56c1752020-11-18 17:56:30 +0000314 for(auto const &kernel_data : _tuning_params_table)
Anthony Barbier8db83182018-02-27 13:08:00 +0000315 {
Manuel Bottinib56c1752020-11-18 17:56:30 +0000316 const cl::NDRange lws = CLTuningParams(kernel_data.second).get_lws();
317 fs << kernel_data.first << ";" << lws[0] << ";" << lws[1] << ";" << lws[2] << std::endl;
Anthony Barbier8db83182018-02-27 13:08:00 +0000318 }
319 fs.close();
Manuel Bottinib56c1752020-11-18 17:56:30 +0000320 return true;
Anthony Barbier8db83182018-02-27 13:08:00 +0000321}
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000322} // namespace arm_compute