blob: e3119c1db93f314952757274ff342d7226950934 [file] [log] [blame]
Gian Marcode691f02017-09-08 16:13:11 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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"
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010025#include "arm_compute/runtime/CL/tuners/CLLWSList.h"
Gian Marcode691f02017-09-08 16:13:11 +010026
27#include "arm_compute/core/CL/ICLKernel.h"
Gian Marco85e6f512018-02-01 16:57:48 +000028#include "arm_compute/core/Error.h"
Gian Marcode691f02017-09-08 16:13:11 +010029#include "arm_compute/runtime/CL/CLScheduler.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>
34#include <iostream>
Gian Marcode691f02017-09-08 16:13:11 +010035#include <limits>
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010036#include <memory>
Gian Marcode691f02017-09-08 16:13:11 +010037#include <string>
38
Gian Marco Iodicea74923c2019-01-31 17:06:54 +000039namespace arm_compute
40{
Anthony Barbier8db83182018-02-27 13:08:00 +000041CLTuner::CLTuner(bool tune_new_kernels)
Michalis Spyrou083a0692019-05-13 15:35:50 +010042 : real_clEnqueueNDRangeKernel(nullptr), _lws_table(), _kernel_event(), _tune_new_kernels(tune_new_kernels), _tuner_mode(CLTunerMode::NORMAL)
Gian Marcode691f02017-09-08 16:13:11 +010043{
44}
45
Anthony Barbierf5dcf792018-02-28 18:04:45 +000046bool CLTuner::kernel_event_is_set() const
47{
48 return _kernel_event() != nullptr;
49}
Gian Marco85e6f512018-02-01 16:57:48 +000050void CLTuner::set_cl_kernel_event(cl_event kernel_event)
51{
52 _kernel_event = kernel_event;
53}
54
Anthony Barbier8db83182018-02-27 13:08:00 +000055void CLTuner::set_tune_new_kernels(bool tune_new_kernels)
56{
57 _tune_new_kernels = tune_new_kernels;
58}
Anthony Barbier8b811952018-02-28 13:47:58 +000059bool CLTuner::tune_new_kernels() const
60{
61 return _tune_new_kernels;
62}
Anthony Barbier8db83182018-02-27 13:08:00 +000063
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010064void CLTuner::set_tuner_mode(CLTunerMode mode)
65{
66 _tuner_mode = mode;
67}
68CLTunerMode 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{
Giorgio Arena5d42b462019-07-26 15:54:20 +010080 // Get the configuration ID from the kernel and append GPU target name and number of available compute units
81 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 +000082
Giorgio Arena5d42b462019-07-26 15:54:20 +010083 // 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
84 if(kernel.config_id() != arm_compute::default_config_id)
Gian Marco85e6f512018-02-01 16:57:48 +000085 {
Anthony Barbier8db83182018-02-27 13:08:00 +000086 auto p = _lws_table.find(config_id);
87
88 if(p == _lws_table.end())
89 {
90 if(_tune_new_kernels)
91 {
92 // Find the optimal LWS for the kernel
93 cl::NDRange opt_lws = find_optimal_lws(kernel);
94
95 // Insert the optimal LWS in the table
96 add_lws_to_table(config_id, opt_lws);
97
98 // Set Local-Workgroup-Size
99 kernel.set_lws_hint(opt_lws);
100 }
101 }
102 else
103 {
104 // Set Local-Workgroup-Size
105 kernel.set_lws_hint(p->second);
106 }
107 }
108}
109
110void CLTuner::add_lws_to_table(const std::string &kernel_id, cl::NDRange optimal_lws)
111{
112 _lws_table.emplace(kernel_id, optimal_lws);
113}
114
115cl::NDRange CLTuner::find_optimal_lws(ICLKernel &kernel)
116{
Georgios Pinitas4632e5e2019-02-06 14:47:59 +0000117 // Profiling queue
118 cl::CommandQueue queue_profiler;
119
120 // Extract real OpenCL function to intercept
Anthony Barbier8db83182018-02-27 13:08:00 +0000121 if(real_clEnqueueNDRangeKernel == nullptr)
122 {
123 real_clEnqueueNDRangeKernel = CLSymbols::get().clEnqueueNDRangeKernel_ptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000124 }
Georgios Pinitas4632e5e2019-02-06 14:47:59 +0000125
126 // Get the default queue
127 cl::CommandQueue default_queue = CLScheduler::get().queue();
128
129 // Check if we can use the OpenCL timer with the default queue
130 cl_command_queue_properties props = default_queue.getInfo<CL_QUEUE_PROPERTIES>();
131
132 if((props & CL_QUEUE_PROFILING_ENABLE) == 0)
133 {
134 // Set the queue for profiling
135 queue_profiler = cl::CommandQueue(CLScheduler::get().context(), props | CL_QUEUE_PROFILING_ENABLE);
136 }
137 else
138 {
139 queue_profiler = default_queue;
140 }
141
Gian Marco85e6f512018-02-01 16:57:48 +0000142 // Start intercepting enqueues:
Anthony Barbier48c19f12018-04-20 11:31:52 +0100143 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,
144 const cl_event * event_wait_list, cl_event * event)
145 {
Anthony Barbier48c19f12018-04-20 11:31:52 +0100146 if(this->kernel_event_is_set())
147 {
148 // 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.
149 return CL_SUCCESS;
150 }
151 cl_event tmp;
152 cl_int retval = this->real_clEnqueueNDRangeKernel(command_queue, kernel, work_dim, gwo, gws, lws, num_events_in_wait_list, event_wait_list, &tmp);
153
154 // Set OpenCL event
155 this->set_cl_kernel_event(tmp);
156
Vidhya Sudhan Loganathanca65af32019-02-07 11:14:42 +0000157 if(event != nullptr)
158 {
159 //return cl_event from the intercepted call
160 clRetainEvent(tmp);
161 *event = tmp;
162 }
Anthony Barbier48c19f12018-04-20 11:31:52 +0100163 return retval;
164 };
165 CLSymbols::get().clEnqueueNDRangeKernel_ptr = interceptor;
Gian Marcode691f02017-09-08 16:13:11 +0100166
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100167 cl::NDRange gws = ICLKernel::gws_from_window(kernel.window());
Gian Marcode691f02017-09-08 16:13:11 +0100168
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100169 // Run the kernel with default lws to be used as baseline
170 kernel.run(kernel.window(), queue_profiler);
171
172 queue_profiler.finish();
173
174 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
175 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
176 cl_ulong min_exec_time = end - start;
177 _kernel_event = nullptr;
178
Gian Marco85e6f512018-02-01 16:57:48 +0000179 cl::NDRange opt_lws = cl::NullRange;
Gian Marcode691f02017-09-08 16:13:11 +0100180
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100181 //Construct the list of LWS values to be tested based on the tuner mode.
182 auto lws_list = cl_tuner::CLLWSListFactory::get_lws_list(_tuner_mode, gws);
183 for(size_t i = 0; i < lws_list->size(); ++i)
Gian Marco85e6f512018-02-01 16:57:48 +0000184 {
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100185 cl::NDRange lws_test = (*lws_list)[i];
186 auto x = lws_test[0];
187 auto y = lws_test[1];
188 auto z = lws_test[2];
Gian Marco Iodicedeaed2d2019-05-14 17:11:53 +0100189 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 +0100190
191 if(invalid_lws)
Gian Marcode691f02017-09-08 16:13:11 +0100192 {
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100193 continue;
194 }
Gian Marco85e6f512018-02-01 16:57:48 +0000195
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100196 //Set the Local-Workgroup-Size
197 kernel.set_lws_hint(lws_test);
Gian Marco Iodicea74923c2019-01-31 17:06:54 +0000198
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100199 // Run the kernel
200 kernel.run(kernel.window(), queue_profiler);
Gian Marco85e6f512018-02-01 16:57:48 +0000201
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100202 queue_profiler.finish();
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000203
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100204 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
205 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
206 const cl_ulong diff = end - start;
207 _kernel_event = nullptr;
Gian Marco Iodicedeaed2d2019-05-14 17:11:53 +0100208
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100209 // Check the execution time
210 if(diff < min_exec_time)
211 {
212 min_exec_time = diff;
213 opt_lws = cl::NDRange(x, y, z);
Gian Marcode691f02017-09-08 16:13:11 +0100214 }
215 }
216
Gian Marco85e6f512018-02-01 16:57:48 +0000217 // Restore real function
Anthony Barbier8db83182018-02-27 13:08:00 +0000218 CLSymbols::get().clEnqueueNDRangeKernel_ptr = real_clEnqueueNDRangeKernel;
219
Gian Marcode691f02017-09-08 16:13:11 +0100220 return opt_lws;
221}
222
223void CLTuner::import_lws_table(const std::unordered_map<std::string, cl::NDRange> &lws_table)
224{
225 _lws_table.clear();
226 _lws_table = lws_table;
227}
228
Anthony Barbier8b811952018-02-28 13:47:58 +0000229const std::unordered_map<std::string, cl::NDRange> &CLTuner::lws_table() const
Gian Marcode691f02017-09-08 16:13:11 +0100230{
231 return _lws_table;
Gian Marco85e6f512018-02-01 16:57:48 +0000232}
233
Anthony Barbier8b811952018-02-28 13:47:58 +0000234void CLTuner::load_from_file(const std::string &filename)
Gian Marco85e6f512018-02-01 16:57:48 +0000235{
Anthony Barbier8b811952018-02-28 13:47:58 +0000236 std::ifstream fs;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000237 fs.exceptions(std::ifstream::badbit);
Anthony Barbier8b811952018-02-28 13:47:58 +0000238 fs.open(filename, std::ios::in);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000239 if(!fs.is_open())
Anthony Barbier8db83182018-02-27 13:08:00 +0000240 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100241 ARM_COMPUTE_ERROR_VAR("Failed to open '%s' (%s [%d])", filename.c_str(), strerror(errno), errno);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000242 }
243 std::string line;
244 while(!std::getline(fs, line).fail())
245 {
246 std::istringstream ss(line);
247 std::string token;
248 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000249 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100250 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 +0000251 }
252 std::string kernel_id = token;
253 cl::NDRange lws(1, 1, 1);
254 for(int i = 0; i < 3; i++)
255 {
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000256 if(std::getline(ss, token, ';').fail())
Anthony Barbier8db83182018-02-27 13:08:00 +0000257 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100258 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 +0000259 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000260 lws.get()[i] = support::cpp11::stoi(token);
Anthony Barbier8db83182018-02-27 13:08:00 +0000261 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000262
263 // If all dimensions are 0: reset to NullRange (i.e nullptr)
264 if(lws[0] == 0 && lws[1] == 0 && lws[2] == 0)
265 {
266 lws = cl::NullRange;
267 }
268 add_lws_to_table(kernel_id, lws);
Anthony Barbier8db83182018-02-27 13:08:00 +0000269 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000270 fs.close();
Gian Marco85e6f512018-02-01 16:57:48 +0000271}
272
Anthony Barbier8b811952018-02-28 13:47:58 +0000273void CLTuner::save_to_file(const std::string &filename) const
Gian Marco85e6f512018-02-01 16:57:48 +0000274{
Anthony Barbier8b811952018-02-28 13:47:58 +0000275 std::ofstream fs;
276 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
277 fs.open(filename, std::ios::out);
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100278 for(auto const &kernel_data : _lws_table)
Anthony Barbier8db83182018-02-27 13:08:00 +0000279 {
280 fs << kernel_data.first << ";" << kernel_data.second[0] << ";" << kernel_data.second[1] << ";" << kernel_data.second[2] << std::endl;
281 }
282 fs.close();
283}
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000284} // namespace arm_compute