blob: 8ce51778477e8dd50de97b5a3b3203f9875ce811 [file] [log] [blame]
Gian Marcode691f02017-09-08 16:13:11 +01001/*
SiCong Li0a486cf2022-04-07 17:41:51 +01002 * Copyright (c) 2017-2022 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"
SiCong Li0a486cf2022-04-07 17:41:51 +010031#if defined(ENABLE_EXPERIMENTAL_DYNAMIC_FUSION)
32#include "src/gpu/cl/kernels/experimental/dynamic_fusion/ClCompositeKernel.h"
33#endif // defined(ENABLE_EXPERIMENTAL_DYNAMIC_FUSION)
Gian Marcode691f02017-09-08 16:13:11 +010034
Anthony Barbier317fa7f2018-03-01 10:11:22 +000035#include <cerrno>
Anthony Barbier8db83182018-02-27 13:08:00 +000036#include <fstream>
Gian Marcode691f02017-09-08 16:13:11 +010037#include <limits>
Gian Marcode691f02017-09-08 16:13:11 +010038
Gian Marco Iodicea74923c2019-01-31 17:06:54 +000039namespace arm_compute
40{
Manuel Bottinib56c1752020-11-18 17:56:30 +000041CLTuner::CLTuner(bool tune_new_kernels, CLTuningInfo tuning_info)
Manuel Bottinibe9f9f92021-01-25 15:07:17 +000042 : real_clEnqueueNDRangeKernel(nullptr), _tuning_params_table(), _lws_table(), _kernel_event(), _tune_new_kernels(tune_new_kernels), _tuning_info(tuning_info)
Gian Marcode691f02017-09-08 16:13:11 +010043{
44}
45
SiCong Li0a486cf2022-04-07 17:41:51 +010046struct CLTuner::IKernelData
47{
48 virtual ~IKernelData() = default;
49 virtual void do_run(ICLKernel &kernel, cl::CommandQueue &queue) = 0;
50};
51struct DefaultKernelData : public CLTuner::IKernelData
52{
53 DefaultKernelData(ITensorPack &tensors)
54 : _tensors{ tensors }
55 {
56 }
57 ~DefaultKernelData() override = default;
58 void do_run(ICLKernel &kernel, cl::CommandQueue &queue) override
59 {
60 const bool inject_memory = !_tensors.empty();
61 inject_memory ? kernel.run_op(_tensors, kernel.window(), queue) : kernel.run(kernel.window(), queue);
62 }
63
64private:
65 ITensorPack &_tensors;
66};
67
68#if defined(ENABLE_EXPERIMENTAL_DYNAMIC_FUSION)
69struct CompositeKernelData : public CLTuner::IKernelData
70{
SiCong Lib63b1192022-01-28 18:24:39 +000071 CompositeKernelData(ITensorPack &tensors, const experimental::dynamic_fusion::ClExecutionDescriptor &exec_desc)
SiCong Li0a486cf2022-04-07 17:41:51 +010072 : _tensors{ tensors }, _exec_desc{ exec_desc }
73 {
74 }
75 ~CompositeKernelData() override = default;
76 void do_run(ICLKernel &kernel, cl::CommandQueue &queue) override
77 {
78 // ClCompositeKernel is purely stateless, and thus always requires memory injection
79 kernel.run_composite_op(_tensors, kernel.window(), queue, _exec_desc);
80 }
81
82private:
SiCong Lib63b1192022-01-28 18:24:39 +000083 ITensorPack &_tensors;
SiCong Li0a486cf2022-04-07 17:41:51 +010084 const experimental::dynamic_fusion::ClExecutionDescriptor &_exec_desc;
85};
86#endif // defined(ENABLE_EXPERIMENTAL_DYNAMIC_FUSION)
87
Anthony Barbierf5dcf792018-02-28 18:04:45 +000088bool CLTuner::kernel_event_is_set() const
89{
90 return _kernel_event() != nullptr;
91}
Gian Marco85e6f512018-02-01 16:57:48 +000092void CLTuner::set_cl_kernel_event(cl_event kernel_event)
93{
94 _kernel_event = kernel_event;
95}
96
Anthony Barbier8db83182018-02-27 13:08:00 +000097void CLTuner::set_tune_new_kernels(bool tune_new_kernels)
98{
99 _tune_new_kernels = tune_new_kernels;
100}
Anthony Barbier8b811952018-02-28 13:47:58 +0000101bool CLTuner::tune_new_kernels() const
102{
103 return _tune_new_kernels;
104}
Anthony Barbier8db83182018-02-27 13:08:00 +0000105
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100106void CLTuner::set_tuner_mode(CLTunerMode mode)
107{
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000108 _tuning_info.tuner_mode = mode;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100109}
Manuel Bottinib56c1752020-11-18 17:56:30 +0000110
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000111void CLTuner::tune_kernel_static(ICLKernel &kernel)
112{
113 ARM_COMPUTE_UNUSED(kernel);
114}
115
116void CLTuner::tune_kernel_dynamic(ICLKernel &kernel)
Gian Marcode691f02017-09-08 16:13:11 +0100117{
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100118 ITensorPack pack;
119 tune_kernel_dynamic(kernel, pack);
Georgios Pinitas9c82e012020-07-17 12:47:56 +0100120}
121
SiCong Li0a486cf2022-04-07 17:41:51 +0100122void CLTuner::do_tune_kernel_dynamic(ICLKernel &kernel, IKernelData *data)
Georgios Pinitas9c82e012020-07-17 12:47:56 +0100123{
Giorgio Arena5d42b462019-07-26 15:54:20 +0100124 // Get the configuration ID from the kernel and append GPU target name and number of available compute units
125 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 +0000126
Giorgio Arena5d42b462019-07-26 15:54:20 +0100127 // 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
128 if(kernel.config_id() != arm_compute::default_config_id)
Gian Marco85e6f512018-02-01 16:57:48 +0000129 {
Manuel Bottinib56c1752020-11-18 17:56:30 +0000130 auto p = _tuning_params_table.find(config_id);
Anthony Barbier8db83182018-02-27 13:08:00 +0000131
Manuel Bottinib56c1752020-11-18 17:56:30 +0000132 if(p == _tuning_params_table.end())
Anthony Barbier8db83182018-02-27 13:08:00 +0000133 {
134 if(_tune_new_kernels)
135 {
136 // Find the optimal LWS for the kernel
SiCong Li0a486cf2022-04-07 17:41:51 +0100137 CLTuningParams opt_tuning_params = find_optimal_tuning_params(kernel, data);
Anthony Barbier8db83182018-02-27 13:08:00 +0000138
139 // Insert the optimal LWS in the table
Manuel Bottinib56c1752020-11-18 17:56:30 +0000140 add_tuning_params(config_id, opt_tuning_params);
Anthony Barbier8db83182018-02-27 13:08:00 +0000141
142 // Set Local-Workgroup-Size
Manuel Bottinib56c1752020-11-18 17:56:30 +0000143 kernel.set_lws_hint(opt_tuning_params.get_lws());
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000144 if(_tuning_info.tune_wbsm)
145 {
146 kernel.set_wbsm_hint(opt_tuning_params.get_wbsm());
147 }
Anthony Barbier8db83182018-02-27 13:08:00 +0000148 }
149 }
150 else
151 {
152 // Set Local-Workgroup-Size
Manuel Bottinib56c1752020-11-18 17:56:30 +0000153 kernel.set_lws_hint(p->second.get_lws());
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000154 if(_tuning_info.tune_wbsm)
155 {
156 kernel.set_wbsm_hint(p->second.get_wbsm());
157 }
Anthony Barbier8db83182018-02-27 13:08:00 +0000158 }
159 }
160}
SiCong Li0a486cf2022-04-07 17:41:51 +0100161void CLTuner::tune_kernel_dynamic(ICLKernel &kernel, ITensorPack &tensors)
162{
163 DefaultKernelData data{ tensors };
164
165 do_tune_kernel_dynamic(kernel, &data);
166}
167
168#if defined(ENABLE_EXPERIMENTAL_DYNAMIC_FUSION)
SiCong Lib63b1192022-01-28 18:24:39 +0000169void CLTuner::tune_kernel_dynamic(ICLKernel &kernel, ITensorPack &tensors, const experimental::dynamic_fusion::ClExecutionDescriptor &exec_desc)
SiCong Li0a486cf2022-04-07 17:41:51 +0100170{
171 CompositeKernelData data{ tensors, exec_desc };
172
173 do_tune_kernel_dynamic(kernel, &data);
174}
175#endif // defined(ENABLE_EXPERIMENTAL_DYNAMIC_FUSION)
Anthony Barbier8db83182018-02-27 13:08:00 +0000176
Manuel Bottinib56c1752020-11-18 17:56:30 +0000177void CLTuner::add_tuning_params(const std::string &kernel_id, CLTuningParams optimal_tuning_params)
178{
179 _tuning_params_table.emplace(kernel_id, optimal_tuning_params);
180}
181
SiCong Li0a486cf2022-04-07 17:41:51 +0100182CLTuningParams CLTuner::find_optimal_tuning_params(ICLKernel &kernel, IKernelData *data)
Anthony Barbier8db83182018-02-27 13:08:00 +0000183{
Georgios Pinitas4632e5e2019-02-06 14:47:59 +0000184 // Profiling queue
185 cl::CommandQueue queue_profiler;
186
187 // Extract real OpenCL function to intercept
Anthony Barbier8db83182018-02-27 13:08:00 +0000188 if(real_clEnqueueNDRangeKernel == nullptr)
189 {
190 real_clEnqueueNDRangeKernel = CLSymbols::get().clEnqueueNDRangeKernel_ptr;
Gian Marco85e6f512018-02-01 16:57:48 +0000191 }
Georgios Pinitas4632e5e2019-02-06 14:47:59 +0000192
193 // Get the default queue
194 cl::CommandQueue default_queue = CLScheduler::get().queue();
195
196 // Check if we can use the OpenCL timer with the default queue
197 cl_command_queue_properties props = default_queue.getInfo<CL_QUEUE_PROPERTIES>();
198
199 if((props & CL_QUEUE_PROFILING_ENABLE) == 0)
200 {
201 // Set the queue for profiling
202 queue_profiler = cl::CommandQueue(CLScheduler::get().context(), props | CL_QUEUE_PROFILING_ENABLE);
203 }
204 else
205 {
206 queue_profiler = default_queue;
207 }
208
Gian Marco85e6f512018-02-01 16:57:48 +0000209 // Start intercepting enqueues:
Anthony Barbier48c19f12018-04-20 11:31:52 +0100210 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,
211 const cl_event * event_wait_list, cl_event * event)
212 {
Anthony Barbier48c19f12018-04-20 11:31:52 +0100213 if(this->kernel_event_is_set())
214 {
215 // 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.
216 return CL_SUCCESS;
217 }
218 cl_event tmp;
219 cl_int retval = this->real_clEnqueueNDRangeKernel(command_queue, kernel, work_dim, gwo, gws, lws, num_events_in_wait_list, event_wait_list, &tmp);
220
221 // Set OpenCL event
222 this->set_cl_kernel_event(tmp);
223
Vidhya Sudhan Loganathanca65af32019-02-07 11:14:42 +0000224 if(event != nullptr)
225 {
226 //return cl_event from the intercepted call
227 clRetainEvent(tmp);
228 *event = tmp;
229 }
Anthony Barbier48c19f12018-04-20 11:31:52 +0100230 return retval;
231 };
232 CLSymbols::get().clEnqueueNDRangeKernel_ptr = interceptor;
Gian Marcode691f02017-09-08 16:13:11 +0100233
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100234 cl::NDRange gws = ICLKernel::gws_from_window(kernel.window());
Gian Marcode691f02017-09-08 16:13:11 +0100235
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100236 // Run the kernel with default lws to be used as baseline
SiCong Li0a486cf2022-04-07 17:41:51 +0100237 data->do_run(kernel, queue_profiler);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100238
239 queue_profiler.finish();
240
241 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
242 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
243 cl_ulong min_exec_time = end - start;
244 _kernel_event = nullptr;
245
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000246 CLTuningParams opt_tuning_params(cl::NullRange, 0);
Gian Marcode691f02017-09-08 16:13:11 +0100247
Manuel Bottinib56c1752020-11-18 17:56:30 +0000248 // Construct the list of tuning parameters values to be tested based on the tuner mode.
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000249 auto tuning_list = cl_tuner::get_tuning_parameters_list(_tuning_info, gws);
250 for(size_t i = 0; i < tuning_list->size(); ++i)
Gian Marco85e6f512018-02-01 16:57:48 +0000251 {
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000252 CLTuningParams tuning_test = (*tuning_list)[i];
253 // Setting the lws
254 cl::NDRange lws_test = tuning_test.get_lws();
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100255 auto x = lws_test[0];
256 auto y = lws_test[1];
257 auto z = lws_test[2];
Gian Marco Iodicedeaed2d2019-05-14 17:11:53 +0100258 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 +0100259
260 if(invalid_lws)
Gian Marcode691f02017-09-08 16:13:11 +0100261 {
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100262 continue;
263 }
Gian Marco85e6f512018-02-01 16:57:48 +0000264
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100265 kernel.set_lws_hint(lws_test);
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000266 if(_tuning_info.tune_wbsm && CLKernelLibrary::get().is_wbsm_supported())
267 {
268 cl_int wbsm_test = tuning_test.get_wbsm();
269 kernel.set_wbsm_hint(wbsm_test);
270 }
Gian Marco Iodicea74923c2019-01-31 17:06:54 +0000271
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100272 // Run the kernel
SiCong Li0a486cf2022-04-07 17:41:51 +0100273 data->do_run(kernel, queue_profiler);
Gian Marco85e6f512018-02-01 16:57:48 +0000274
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100275 queue_profiler.finish();
Gian Marcoc78d4bc2018-01-25 13:49:44 +0000276
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100277 const cl_ulong start = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_START>();
278 const cl_ulong end = _kernel_event.getProfilingInfo<CL_PROFILING_COMMAND_END>();
279 const cl_ulong diff = end - start;
280 _kernel_event = nullptr;
Gian Marco Iodicedeaed2d2019-05-14 17:11:53 +0100281
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100282 // Check the execution time
283 if(diff < min_exec_time)
284 {
285 min_exec_time = diff;
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000286 opt_tuning_params.set_lws(tuning_test.get_lws());
287 if(_tuning_info.tune_wbsm)
288 {
289 opt_tuning_params.set_wbsm(tuning_test.get_wbsm());
290 }
Gian Marcode691f02017-09-08 16:13:11 +0100291 }
292 }
293
Gian Marco85e6f512018-02-01 16:57:48 +0000294 // Restore real function
Anthony Barbier8db83182018-02-27 13:08:00 +0000295 CLSymbols::get().clEnqueueNDRangeKernel_ptr = real_clEnqueueNDRangeKernel;
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000296 return opt_tuning_params;
Gian Marcode691f02017-09-08 16:13:11 +0100297}
298
Manuel Bottinib56c1752020-11-18 17:56:30 +0000299const std::unordered_map<std::string, CLTuningParams> &CLTuner::tuning_params_table() const
300{
301 return _tuning_params_table;
302}
303
304void CLTuner::import_tuning_params(const std::unordered_map<std::string, CLTuningParams> &tuning_params_table)
305{
306 _tuning_params_table.clear();
307 _tuning_params_table = tuning_params_table;
308}
309
Anthony Barbier8b811952018-02-28 13:47:58 +0000310void CLTuner::load_from_file(const std::string &filename)
Gian Marco85e6f512018-02-01 16:57:48 +0000311{
Anthony Barbier8b811952018-02-28 13:47:58 +0000312 std::ifstream fs;
Anthony Barbierf5dcf792018-02-28 18:04:45 +0000313 fs.exceptions(std::ifstream::badbit);
Anthony Barbier8b811952018-02-28 13:47:58 +0000314 fs.open(filename, std::ios::in);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000315 if(!fs.is_open())
Anthony Barbier8db83182018-02-27 13:08:00 +0000316 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100317 ARM_COMPUTE_ERROR_VAR("Failed to open '%s' (%s [%d])", filename.c_str(), strerror(errno), errno);
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000318 }
319 std::string line;
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000320 bool header_line = true;
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000321 while(!std::getline(fs, line).fail())
322 {
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000323 if(header_line)
Anthony Barbier8db83182018-02-27 13:08:00 +0000324 {
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000325 header_line = false;
326 size_t pos_lws = line.find("lws");
327 size_t pos_wbsm = line.find("wbsm");
328 _tuning_info.tune_wbsm = false;
329 if(pos_lws != std::string::npos || pos_wbsm != std::string::npos)
Anthony Barbier8db83182018-02-27 13:08:00 +0000330 {
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000331 // The file has in the first line the parameters it has been tuned on
332 if(pos_wbsm != std::string::npos)
333 {
334 _tuning_info.tune_wbsm = true;
335 }
336 // Once the line with the tuning parameter is read we can
337 // read the next one to start collecting the values
338 if(std::getline(fs, line).fail())
339 {
340 break;
341 }
Anthony Barbier8db83182018-02-27 13:08:00 +0000342 }
Anthony Barbier8db83182018-02-27 13:08:00 +0000343 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000344
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000345 CLTuningParams tuning_params;
346 size_t pos = line.find(";");
347 if(pos == std::string::npos)
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000348 {
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000349 ARM_COMPUTE_ERROR_VAR("Malformed row '%s' in %s", line.c_str(), filename.c_str());
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000350 }
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000351 std::string kernel_id = line.substr(0, pos);
352 line.erase(0, pos + 1);
353 if(!tuning_params.from_string(_tuning_info, line))
354 {
355 ARM_COMPUTE_ERROR_VAR("Malformed row '%s' in %s", line.c_str(), filename.c_str());
356 }
357 add_tuning_params(kernel_id, tuning_params);
Anthony Barbier8db83182018-02-27 13:08:00 +0000358 }
Anthony Barbier317fa7f2018-03-01 10:11:22 +0000359 fs.close();
Gian Marco85e6f512018-02-01 16:57:48 +0000360}
361
Manuel Bottinib56c1752020-11-18 17:56:30 +0000362bool CLTuner::save_to_file(const std::string &filename) const
Gian Marco85e6f512018-02-01 16:57:48 +0000363{
Manuel Bottinib56c1752020-11-18 17:56:30 +0000364 if(!_tune_new_kernels || _tuning_params_table.empty() || filename.empty())
365 {
366 return false;
367 }
Anthony Barbier8b811952018-02-28 13:47:58 +0000368 std::ofstream fs;
369 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
370 fs.open(filename, std::ios::out);
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000371 std::string header_string = "";
372 header_string += "lws";
373 if(_tuning_info.tune_wbsm)
374 {
375 if(!header_string.empty())
376 {
377 header_string += " ";
378 }
379 header_string += "wbsm";
380 }
381 fs << header_string << std::endl;
Manuel Bottinib56c1752020-11-18 17:56:30 +0000382 for(auto const &kernel_data : _tuning_params_table)
Anthony Barbier8db83182018-02-27 13:08:00 +0000383 {
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000384 CLTuningParams tun_pams(kernel_data.second);
385 fs << kernel_data.first << tun_pams.to_string(_tuning_info) << std::endl;
Anthony Barbier8db83182018-02-27 13:08:00 +0000386 }
387 fs.close();
Manuel Bottinib56c1752020-11-18 17:56:30 +0000388 return true;
Anthony Barbier8db83182018-02-27 13:08:00 +0000389}
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000390} // namespace arm_compute