blob: 5f82cd3fbeff09a02c41b83508d8c994238544a7 [file] [log] [blame]
Kaizen8938bd32017-09-28 14:38:23 +01001/*
Anthony Barbier06ea0482018-02-22 15:45:35 +00002 * Copyright (c) 2017-2018 ARM Limited.
Kaizen8938bd32017-09-28 14:38: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/runtime/CL/CLTuner.h"
25
26#include "arm_compute/core/CL/ICLKernel.h"
Anthony Barbier06ea0482018-02-22 15:45:35 +000027#include "arm_compute/core/Error.h"
Kaizen8938bd32017-09-28 14:38:23 +010028#include "arm_compute/runtime/CL/CLScheduler.h"
29
Jenkinsc3f34a42018-03-02 12:38:09 +000030#include <cerrno>
31#include <fstream>
32#include <iostream>
Kaizen8938bd32017-09-28 14:38:23 +010033#include <limits>
34#include <string>
35
36using namespace arm_compute;
37
Jenkinsc3f34a42018-03-02 12:38:09 +000038CLTuner::CLTuner(bool tune_new_kernels)
39 : real_clEnqueueNDRangeKernel(nullptr), _lws_table(), _queue(), _queue_profiler(), _kernel_event(), _tune_new_kernels(tune_new_kernels)
40{
41}
42
43bool CLTuner::kernel_event_is_set() const
44{
45 return _kernel_event() != nullptr;
46}
Anthony Barbier06ea0482018-02-22 15:45:35 +000047void CLTuner::set_cl_kernel_event(cl_event kernel_event)
48{
49 _kernel_event = kernel_event;
50}
51
Jenkinsc3f34a42018-03-02 12:38:09 +000052void CLTuner::set_tune_new_kernels(bool tune_new_kernels)
53{
54 _tune_new_kernels = tune_new_kernels;
55}
56bool CLTuner::tune_new_kernels() const
57{
58 return _tune_new_kernels;
59}
60
Jenkinsb3a371b2018-05-23 11:36:53 +010061void CLTuner::tune_kernel_static(ICLKernel &kernel)
62{
63 ARM_COMPUTE_UNUSED(kernel);
64}
65
66void CLTuner::tune_kernel_dynamic(ICLKernel &kernel)
Kaizen8938bd32017-09-28 14:38:23 +010067{
Jenkinsc3f34a42018-03-02 12:38:09 +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)
Anthony Barbier06ea0482018-02-22 15:45:35 +000073 {
Jenkinsc3f34a42018-03-02 12:38:09 +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;
Anthony Barbier06ea0482018-02-22 15:45:35 +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 }
Anthony Barbier06ea0482018-02-22 15:45:35 +0000125 // Start intercepting enqueues:
Jenkinsb3a371b2018-05-23 11:36:53 +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;
Kaizen8938bd32017-09-28 14:38:23 +0100145
Anthony Barbier06ea0482018-02-22 15:45:35 +0000146 cl_ulong min_exec_time = std::numeric_limits<cl_ulong>::max();
Kaizen8938bd32017-09-28 14:38:23 +0100147
Anthony Barbier06ea0482018-02-22 15:45:35 +0000148 cl::NDRange opt_lws = cl::NullRange;
Kaizen8938bd32017-09-28 14:38:23 +0100149
Anthony Barbier06ea0482018-02-22 15:45:35 +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
157 // First run using the default LWS
Kaizen8938bd32017-09-28 14:38:23 +0100158 {
Anthony Barbier06ea0482018-02-22 15:45:35 +0000159 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
Jenkinsc3f34a42018-03-02 12:38:09 +0000166 _queue_profiler.finish();
Anthony Barbier06ea0482018-02-22 15:45:35 +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;
Jenkinsc3f34a42018-03-02 12:38:09 +0000171 _kernel_event = nullptr;
Anthony Barbier06ea0482018-02-22 15:45:35 +0000172
173 min_exec_time = diff;
174 }
175
176 for(int z = 1; z <= z_end; ++z)
177 {
178 for(int y = 1; y <= y_end; ++y)
Kaizen8938bd32017-09-28 14:38:23 +0100179 {
Anthony Barbier06ea0482018-02-22 15:45:35 +0000180 for(int x = 1; x <= x_end; ++x)
Kaizen8938bd32017-09-28 14:38:23 +0100181 {
Anthony Barbier06ea0482018-02-22 15:45:35 +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)
187 {
188 continue;
189 }
190
191 //Set the Local-Workgroup-Size
192 kernel.set_lws_hint(lws_test);
193
194 // Run the kernel
195 kernel.run(kernel.window(), _queue_profiler);
196
Jenkinsc3f34a42018-03-02 12:38:09 +0000197 _queue_profiler.finish();
Anthony Barbier06ea0482018-02-22 15:45:35 +0000198
199 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;
Jenkinsc3f34a42018-03-02 12:38:09 +0000202 _kernel_event = nullptr;
Anthony Barbier06ea0482018-02-22 15:45:35 +0000203
204 // Check the execution time
205 if(diff < min_exec_time)
206 {
207 min_exec_time = diff;
208 opt_lws = cl::NDRange(x, y, z);
209 }
Kaizen8938bd32017-09-28 14:38:23 +0100210 }
211 }
212 }
213
Anthony Barbier06ea0482018-02-22 15:45:35 +0000214 // Restore real function
Jenkinsc3f34a42018-03-02 12:38:09 +0000215 CLSymbols::get().clEnqueueNDRangeKernel_ptr = real_clEnqueueNDRangeKernel;
Anthony Barbier06ea0482018-02-22 15:45:35 +0000216
Kaizen8938bd32017-09-28 14:38:23 +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
Jenkinsc3f34a42018-03-02 12:38:09 +0000226const std::unordered_map<std::string, cl::NDRange> &CLTuner::lws_table() const
Kaizen8938bd32017-09-28 14:38:23 +0100227{
228 return _lws_table;
Anthony Barbier06ea0482018-02-22 15:45:35 +0000229}
230
Jenkinsc3f34a42018-03-02 12:38:09 +0000231void CLTuner::load_from_file(const std::string &filename)
Anthony Barbier06ea0482018-02-22 15:45:35 +0000232{
Jenkinsc3f34a42018-03-02 12:38:09 +0000233 std::ifstream fs;
234 fs.exceptions(std::ifstream::badbit);
235 fs.open(filename, std::ios::in);
236 if(!fs.is_open())
237 {
238 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())
246 {
247 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 {
253 if(std::getline(ss, token, ';').fail())
254 {
255 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());
256 }
257 lws.get()[i] = support::cpp11::stoi(token);
258 }
259
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);
266 }
267 fs.close();
Anthony Barbier06ea0482018-02-22 15:45:35 +0000268}
269
Jenkinsc3f34a42018-03-02 12:38:09 +0000270void CLTuner::save_to_file(const std::string &filename) const
Anthony Barbier06ea0482018-02-22 15:45:35 +0000271{
Jenkinsc3f34a42018-03-02 12:38:09 +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)
276 {
277 fs << kernel_data.first << ";" << kernel_data.second[0] << ";" << kernel_data.second[1] << ";" << kernel_data.second[2] << std::endl;
278 }
279 fs.close();
Anthony Barbier06ea0482018-02-22 15:45:35 +0000280}