blob: b9b2b5651a8d3880630bc099d7b2b042c9f76630 [file] [log] [blame]
Michalis Spyrou11d49182020-03-26 10:31:32 +00001/*
Giorgio Arena232c4522022-03-03 10:09:01 +00002 * Copyright (c) 2020-2022 Arm Limited.
Michalis Spyrou11d49182020-03-26 10:31:32 +00003 *
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/core/CL/CLCompileContext.h"
25#include "arm_compute/core/CL/OpenCL.h"
26
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/Utils.h"
30#include "support/StringSupport.h"
31
Giorgio Arenaea8d2662021-05-20 11:36:56 +010032#include <regex>
33
Michalis Spyrou11d49182020-03-26 10:31:32 +000034namespace arm_compute
35{
36CLBuildOptions::CLBuildOptions()
37 : _build_opts()
38{
39}
40
41void CLBuildOptions::add_option(std::string option)
42{
43 _build_opts.emplace(std::move(option));
44}
45
46void CLBuildOptions::add_option_if(bool cond, std::string option)
47{
48 if(cond)
49 {
50 add_option(std::move(option));
51 }
52}
53
54void CLBuildOptions::add_option_if_else(bool cond, std::string option_true, std::string option_false)
55{
56 (cond) ? add_option(std::move(option_true)) : add_option(std::move(option_false));
57}
58
59void CLBuildOptions::add_options(const StringSet &options)
60{
61 _build_opts.insert(options.begin(), options.end());
62}
63
64void CLBuildOptions::add_options_if(bool cond, const StringSet &options)
65{
66 if(cond)
67 {
68 add_options(options);
69 }
70}
71
72const CLBuildOptions::StringSet &CLBuildOptions::options() const
73{
74 return _build_opts;
75}
76
Giorgio Arena232c4522022-03-03 10:09:01 +000077bool CLBuildOptions::operator==(const CLBuildOptions &other) const
78{
79 return _build_opts == other._build_opts;
80}
81
Michalis Spyrou11d49182020-03-26 10:31:32 +000082Program::Program()
83 : _context(), _device(), _is_binary(false), _name(), _source(), _binary()
84{
85}
86
87Program::Program(cl::Context context, std::string name, std::string source)
88 : _context(std::move(context)), _device(), _is_binary(false), _name(std::move(name)), _source(std::move(source)), _binary()
89{
90}
91
92Program::Program(cl::Context context, cl::Device device, std::string name, std::vector<unsigned char> binary)
93 : _context(std::move(context)), _device(std::move(device)), _is_binary(true), _name(std::move(name)), _source(), _binary(std::move(binary))
94{
95}
96
97Program::operator cl::Program() const
98{
99 if(_is_binary)
100 {
101 return cl::Program(_context, { _device }, { _binary });
102 }
103 else
104 {
105 return cl::Program(_context, _source, false);
106 }
107}
108
109bool Program::build(const cl::Program &program, const std::string &build_options)
110{
111 try
112 {
113 return program.build(build_options.c_str()) == CL_SUCCESS;
114 }
115 catch(const cl::Error &e)
116 {
117 cl_int err = CL_SUCCESS;
118 const auto build_info = program.getBuildInfo<CL_PROGRAM_BUILD_LOG>(&err);
119
120 for(auto &pair : build_info)
121 {
122 std::cerr << pair.second << std::endl;
123 }
124
125 return false;
126 }
127}
128
129cl::Program Program::build(const std::string &build_options) const
130{
131 cl::Program cl_program = static_cast<cl::Program>(*this);
132 build(cl_program, build_options);
133 return cl_program;
134}
135
136Kernel::Kernel()
137 : _name(), _kernel()
138{
139}
140
141Kernel::Kernel(std::string name, const cl::Program &program)
142 : _name(std::move(name)),
143 _kernel(cl::Kernel(program, _name.c_str()))
144{
145}
146CLCompileContext::CLCompileContext()
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000147 : _context(), _device(), _programs_map(), _built_programs_map(), _is_wbsm_supported()
Michalis Spyrou11d49182020-03-26 10:31:32 +0000148{
149}
150
151CLCompileContext::CLCompileContext(cl::Context context, const cl::Device &device)
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000152 : _context(), _device(), _programs_map(), _built_programs_map(), _is_wbsm_supported()
Michalis Spyrou11d49182020-03-26 10:31:32 +0000153{
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000154 _context = std::move(context);
155 _device = CLDevice(device);
156 _is_wbsm_supported = get_wbsm_support_info(device);
Michalis Spyrou11d49182020-03-26 10:31:32 +0000157}
158
159Kernel CLCompileContext::create_kernel(const std::string &kernel_name, const std::string &program_name, const std::string &program_source,
160 const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const
161{
162 const std::string build_options = generate_build_options(build_options_set, kernel_path);
163 const std::string built_program_name = program_name + "_" + build_options;
164 auto built_program_it = _built_programs_map.find(built_program_name);
165 cl::Program cl_program;
166
167 if(_built_programs_map.end() != built_program_it)
168 {
169 // If program has been built, retrieve to create kernel from it
170 cl_program = built_program_it->second;
171 }
172 else
173 {
174 Program program = load_program(program_name, program_source, is_binary);
175
176 // Build program
177 cl_program = program.build(build_options);
178
179 // Add built program to internal map
Michalis Spyrou12910f22020-04-14 13:54:45 +0100180 _built_programs_map.emplace(built_program_name, cl_program);
Michalis Spyrou11d49182020-03-26 10:31:32 +0000181 }
182
183 // Create and return kernel
184 return Kernel(kernel_name, cl_program);
185}
186
187const Program &CLCompileContext::load_program(const std::string &program_name, const std::string &program_source, bool is_binary) const
188{
189 const auto program_it = _programs_map.find(program_name);
190
191 if(program_it != _programs_map.end())
192 {
193 return program_it->second;
194 }
195
196 Program program;
197
198#ifdef EMBEDDED_KERNELS
199 ARM_COMPUTE_UNUSED(is_binary);
200 program = Program(_context, program_name, program_source);
201#else /* EMBEDDED_KERNELS */
202 if(is_binary)
203 {
204 program = Program(_context, _device.cl_device(), program_name, std::vector<unsigned char>(program_source.begin(), program_source.end()));
205 }
206 else
207 {
208 program = Program(_context, program_name, program_source);
209 }
210#endif /* EMBEDDED_KERNELS */
211
212 // Insert program to program map
213 const auto new_program = _programs_map.emplace(program_name, std::move(program));
214
215 return new_program.first->second;
216}
217
218void CLCompileContext::set_context(cl::Context context)
219{
220 _context = std::move(context);
221 if(_context.get() != nullptr)
222 {
223 const auto cl_devices = _context.getInfo<CL_CONTEXT_DEVICES>();
224
225 if(!cl_devices.empty())
226 {
227 _device = CLDevice(cl_devices[0]);
228 }
229 }
230}
231
232std::string CLCompileContext::generate_build_options(const StringSet &build_options_set, const std::string &kernel_path) const
233{
234 std::string concat_str;
235
236#if defined(ARM_COMPUTE_DEBUG_ENABLED)
237 // Enable debug properties in CL kernels
238 concat_str += " -DARM_COMPUTE_DEBUG_ENABLED";
239#endif // defined(ARM_COMPUTE_DEBUG_ENABLED)
240
241 GPUTarget gpu_arch = get_arch_from_target(_device.target());
242 concat_str += " -DGPU_ARCH=" + support::cpp11::to_string(
243 static_cast<std::underlying_type<GPUTarget>::type>(gpu_arch));
244
245 if(_device.supported("cl_khr_fp16"))
246 {
247 concat_str += " -DARM_COMPUTE_OPENCL_FP16_ENABLED=1 ";
248 }
249
250 if(_device.supported("cl_arm_integer_dot_product_int8"))
251 {
252 concat_str += " -DARM_COMPUTE_OPENCL_DOT8_ENABLED=1 ";
253 }
254
255 if(_device.supported("cl_arm_integer_dot_product_accumulate_int8"))
256 {
257 concat_str += " -DARM_COMPUTE_OPENCL_DOT8_ACC_ENABLED=1 ";
258 }
259
260 if(_device.version() == CLVersion::CL20)
261 {
262 concat_str += " -cl-std=CL2.0 ";
263 }
264 else if(_device.supported("cl_arm_non_uniform_work_group_size"))
265 {
266 concat_str += " -cl-arm-non-uniform-work-group-size ";
267 }
268 else
269 {
270 ARM_COMPUTE_ERROR("Non uniform workgroup size is not supported!!");
271 }
272
Giorgio Arenabf1dbd82021-05-20 14:17:23 +0100273 if(gpu_arch != GPUTarget::UNKNOWN && gpu_arch != GPUTarget::MIDGARD)
Giorgio Arenaea8d2662021-05-20 11:36:56 +0100274 {
275 const std::string device_vers = _device.device_version();
276 const std::regex ddk_regex("r([0-9]*)p[0-9]");
277 std::smatch ddk_match;
278
Giorgio Arenaf7f64502021-06-30 14:26:40 +0100279 if(std::regex_search(device_vers, ddk_match, ddk_regex) && std::stoi(ddk_match[1]) >= 11)
Giorgio Arenaea8d2662021-05-20 11:36:56 +0100280 {
281 concat_str += " -DUNROLL_WITH_PRAGMA ";
282 }
283 }
284
Michalis Spyrou11d49182020-03-26 10:31:32 +0000285 std::string build_options = stringify_set(build_options_set, kernel_path) + concat_str;
286
287 return build_options;
288}
289
290bool CLCompileContext::fp16_supported() const
291{
292 return _device.supported("cl_khr_fp16");
293}
294
295std::string CLCompileContext::stringify_set(const StringSet &s, const std::string &kernel_path) const
296{
297 std::string concat_set;
298#ifndef EMBEDDED_KERNELS
299 concat_set += "-I" + kernel_path + " ";
300#else /* EMBEDDED_KERNELS */
301 ARM_COMPUTE_UNUSED(kernel_path);
302#endif /* EMBEDDED_KERNELS */
303
304 // Concatenate set
305 for(const auto &el : s)
306 {
307 concat_set += " " + el;
308 }
309
310 return concat_set;
311}
312
313void CLCompileContext::add_built_program(const std::string &built_program_name, const cl::Program &program) const
314{
315 _built_programs_map.emplace(built_program_name, program);
316}
317
318void CLCompileContext::clear_programs_cache()
319{
320 _programs_map.clear();
321 _built_programs_map.clear();
322}
323
324const std::map<std::string, cl::Program> &CLCompileContext::get_built_programs() const
325{
326 return _built_programs_map;
327}
328
329cl::Context &CLCompileContext::context()
330{
331 return _context;
332}
333
334const cl::Device &CLCompileContext::get_device() const
335{
336 return _device.cl_device();
337}
338
339void CLCompileContext::set_device(cl::Device device)
340{
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000341 _device = std::move(device);
342 _is_wbsm_supported = get_wbsm_support_info(device);
Michalis Spyrou11d49182020-03-26 10:31:32 +0000343}
344
345cl::NDRange CLCompileContext::default_ndrange() const
346{
347 GPUTarget _target = get_target_from_device(_device.cl_device());
348 cl::NDRange default_range;
349
350 switch(_target)
351 {
352 case GPUTarget::MIDGARD:
353 case GPUTarget::T600:
354 case GPUTarget::T700:
355 case GPUTarget::T800:
356 default_range = cl::NDRange(128u, 1);
357 break;
358 default:
359 default_range = cl::NullRange;
360 }
361
362 return default_range;
363}
364
365bool CLCompileContext::int64_base_atomics_supported() const
366{
367 return _device.supported("cl_khr_int64_base_atomics");
368}
369
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000370bool CLCompileContext::is_wbsm_supported() const
371{
372 return _is_wbsm_supported;
373}
374
Michalis Spyrou11d49182020-03-26 10:31:32 +0000375size_t CLCompileContext::max_local_workgroup_size(const cl::Kernel &kernel) const
376{
377 size_t result;
378
379 size_t err = kernel.getWorkGroupInfo(_device.cl_device(), CL_KERNEL_WORK_GROUP_SIZE, &result);
380 ARM_COMPUTE_ERROR_ON_MSG(err != 0, "clGetKernelWorkGroupInfo failed to return the maximum workgroup size for the kernel");
381 ARM_COMPUTE_UNUSED(err);
382
383 return result;
384}
385
386std::string CLCompileContext::get_device_version() const
387{
388 return _device.device_version();
389}
390
391cl_uint CLCompileContext::get_num_compute_units() const
392{
393 return _device.compute_units();
394}
395} // namespace arm_compute