blob: b31864211ce4a43b24e6a4df10c996e047927405 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Viet-Hoa Dof8bb0922022-05-30 15:15:15 +01002 * Copyright (c) 2016-2022 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44: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/core/CL/CLHelpers.h"
Gian Marco Iodice8155c022021-04-16 15:08:59 +010025#include "arm_compute/core/CL/CLKernelLibrary.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026#include "arm_compute/core/CL/CLTypes.h"
27#include "arm_compute/core/Error.h"
Georgios Pinitas3faea252017-10-30 14:13:50 +000028#include "arm_compute/core/Log.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Types.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010030#include "src/gpu/cl/ClCompileContext.h"
Georgios Pinitas908f6162021-05-04 10:11:09 +010031
Georgios Pinitas7891a732021-08-20 21:39:25 +010032#include "src/gpu/cl/ClKernelLibrary.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010034#include <utility>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include <vector>
36
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037namespace arm_compute
38{
39std::string get_cl_type_from_data_type(const DataType &dt)
40{
41 switch(dt)
42 {
43 case DataType::U8:
Michel Iwaniec00633802017-10-12 14:14:15 +010044 case DataType::QASYMM8:
45 return "uchar";
Georgios Pinitas3d13af82019-06-04 13:04:16 +010046 case DataType::S8:
Michele Di Giorgiof9179d32019-11-27 16:17:30 +000047 case DataType::QASYMM8_SIGNED:
Georgios Pinitas3d13af82019-06-04 13:04:16 +010048 case DataType::QSYMM8:
Michalis Spyrou3f632f32019-08-22 16:52:00 +010049 case DataType::QSYMM8_PER_CHANNEL:
Georgios Pinitas3d13af82019-06-04 13:04:16 +010050 return "char";
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 case DataType::U16:
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +010052 case DataType::QASYMM16:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 return "ushort";
54 case DataType::S16:
Michele Di Giorgio6997fc92019-06-18 10:23:22 +010055 case DataType::QSYMM16:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 return "short";
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 case DataType::U32:
58 return "uint";
59 case DataType::S32:
60 return "int";
61 case DataType::U64:
62 return "ulong";
63 case DataType::S64:
64 return "long";
65 case DataType::F16:
66 return "half";
67 case DataType::F32:
68 return "float";
69 default:
70 ARM_COMPUTE_ERROR("Unsupported input data type.");
71 return "";
72 }
73}
74
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010075std::string get_cl_promoted_type_from_data_type(const DataType &dt)
76{
77 switch(dt)
78 {
79 case DataType::U8:
80 case DataType::QASYMM8:
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010081 return "ushort";
82 case DataType::S8:
Michele Di Giorgiof9179d32019-11-27 16:17:30 +000083 case DataType::QASYMM8_SIGNED:
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010084 case DataType::QSYMM8:
85 case DataType::QSYMM8_PER_CHANNEL:
86 return "short";
87 case DataType::U16:
88 case DataType::QASYMM16:
89 return "uint";
90 case DataType::S16:
91 case DataType::QSYMM16:
92 return "int";
93 case DataType::U32:
94 return "ulong";
95 case DataType::S32:
96 return "long";
97 case DataType::F16:
98 return "float";
99 default:
100 ARM_COMPUTE_ERROR("Cannot get promoted OpenCL type for the input data type.");
101 return "";
102 }
103}
104
105std::string get_cl_unsigned_type_from_element_size(size_t element_size)
106{
107 switch(element_size)
108 {
109 case 1:
110 return "uchar";
111 case 2:
112 return "ushort";
113 case 4:
114 return "uint";
115 case 8:
116 return "ulong";
117 default:
118 ARM_COMPUTE_ERROR("Data type not supported");
119 return "";
120 }
121}
122
Michalis Spyrou7317e392020-01-17 11:27:49 +0000123std::string get_cl_signed_type_from_element_size(size_t element_size)
124{
125 switch(element_size)
126 {
127 case 1:
128 return "char";
129 case 2:
130 return "short";
131 case 4:
132 return "int";
133 case 8:
134 return "long";
135 default:
136 ARM_COMPUTE_ERROR("Data type not supported");
137 return "";
138 }
139}
140
Giorgio Arena73023022018-09-04 14:55:55 +0100141std::string get_cl_select_type_from_data_type(const DataType &dt)
142{
143 switch(dt)
144 {
145 case DataType::U8:
Giorgio Arena73023022018-09-04 14:55:55 +0100146 case DataType::QASYMM8:
147 return "uchar";
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100148 case DataType::S8:
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000149 case DataType::QASYMM8_SIGNED:
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100150 case DataType::QSYMM8:
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100151 case DataType::QSYMM8_PER_CHANNEL:
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100152 return "char";
Giorgio Arena73023022018-09-04 14:55:55 +0100153 case DataType::U16:
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +0100154 case DataType::QASYMM16:
Giorgio Arena73023022018-09-04 14:55:55 +0100155 return "ushort";
156 case DataType::F16:
157 case DataType::S16:
Michele Di Giorgio6997fc92019-06-18 10:23:22 +0100158 case DataType::QSYMM16:
Giorgio Arena73023022018-09-04 14:55:55 +0100159 return "short";
160 case DataType::U32:
161 return "uint";
162 case DataType::F32:
163 case DataType::S32:
164 return "int";
165 case DataType::U64:
166 return "ulong";
167 case DataType::S64:
168 return "long";
169 default:
170 ARM_COMPUTE_ERROR("Unsupported input data type.");
171 return "";
172 }
173}
174
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000175std::string get_cl_dot8_acc_type_from_data_type(const DataType &dt)
176{
177 switch(dt)
178 {
179 case DataType::U8:
180 case DataType::QASYMM8:
181 return "uint";
182 case DataType::S8:
183 case DataType::QASYMM8_SIGNED:
184 case DataType::QSYMM8:
185 case DataType::QSYMM8_PER_CHANNEL:
186 return "int";
187 default:
188 ARM_COMPUTE_ERROR("Unsupported data type.");
189 return "";
190 }
191}
192
SiCong Lic51b72f2017-07-28 14:46:20 +0100193std::string get_data_size_from_data_type(const DataType &dt)
194{
195 switch(dt)
196 {
197 case DataType::U8:
SiCong Lic51b72f2017-07-28 14:46:20 +0100198 case DataType::S8:
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100199 case DataType::QSYMM8:
Michel Iwaniec00633802017-10-12 14:14:15 +0100200 case DataType::QASYMM8:
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000201 case DataType::QASYMM8_SIGNED:
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100202 case DataType::QSYMM8_PER_CHANNEL:
SiCong Lic51b72f2017-07-28 14:46:20 +0100203 return "8";
204 case DataType::U16:
205 case DataType::S16:
Michele Di Giorgio6997fc92019-06-18 10:23:22 +0100206 case DataType::QSYMM16:
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +0100207 case DataType::QASYMM16:
SiCong Lic51b72f2017-07-28 14:46:20 +0100208 case DataType::F16:
209 return "16";
210 case DataType::U32:
211 case DataType::S32:
212 case DataType::F32:
213 return "32";
214 case DataType::U64:
215 case DataType::S64:
216 return "64";
217 default:
218 ARM_COMPUTE_ERROR("Unsupported input data type.");
219 return "0";
220 }
221}
222
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100223GPUTarget get_target_from_device(const cl::Device &device)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100224{
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100225 // Query device name size
Anthony Barbier30a63422018-02-28 18:18:24 +0000226 std::string device_name = device.getInfo<CL_DEVICE_NAME>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227
Michalis Spyroua9676112018-02-22 18:07:43 +0000228 return get_target_from_name(device_name);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100229}
230
Anthony Barbierd727e852018-04-20 11:05:29 +0100231bool arm_non_uniform_workgroup_supported(const cl::Device &device)
steniu0134702472017-07-11 09:22:58 +0100232{
Vidhya Sudhan Loganathaneb8a3992018-04-10 12:23:22 +0100233 return device_supports_extension(device, "cl_arm_non_uniform_work_group_size");
Matthew Bentham6f31f8c2017-10-27 11:50:06 +0100234}
steniu0134702472017-07-11 09:22:58 +0100235
Anthony Barbierd727e852018-04-20 11:05:29 +0100236bool fp16_supported(const cl::Device &device)
Matthew Bentham6f31f8c2017-10-27 11:50:06 +0100237{
Vidhya Sudhan Loganathaneb8a3992018-04-10 12:23:22 +0100238 return device_supports_extension(device, "cl_khr_fp16");
steniu0134702472017-07-11 09:22:58 +0100239}
240
Michalis Spyroue03342e2018-01-15 14:39:13 +0000241bool dot8_supported(const cl::Device &device)
242{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100243 std::string device_name = device.getInfo<CL_DEVICE_NAME>();
244 const GPUTarget gpu_target = get_target_from_name(device_name);
245
246 // SW_WORKAROUND: Workaround for DDK revision r14p0.to enable cl_arm_integer_dot_product_int8
giuros018b6b4a92018-12-18 19:01:33 +0000247 std::set<GPUTarget> sw_workaround_issue = { GPUTarget::G76 };
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100248 return (device_supports_extension(device, "cl_arm_integer_dot_product_int8") || sw_workaround_issue.count(gpu_target) != 0);
Michalis Spyroue03342e2018-01-15 14:39:13 +0000249}
250
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100251bool dot8_acc_supported(const cl::Device &device)
252{
253 return device_supports_extension(device, "cl_arm_integer_dot_product_accumulate_int8");
254}
255
steniu0134702472017-07-11 09:22:58 +0100256CLVersion get_cl_version(const cl::Device &device)
257{
Anthony Barbier30a63422018-02-28 18:18:24 +0000258 std::string version_str = device.getInfo<CL_DEVICE_VERSION>();
Viet-Hoa Dof8bb0922022-05-30 15:15:15 +0100259 if(version_str.find("OpenCL 3") != std::string::npos)
260 {
261 return CLVersion::CL30;
262 }
263 else if(version_str.find("OpenCL 2") != std::string::npos)
steniu0134702472017-07-11 09:22:58 +0100264 {
265 return CLVersion::CL20;
266 }
267 else if(version_str.find("OpenCL 1.2") != std::string::npos)
268 {
269 return CLVersion::CL12;
270 }
271 else if(version_str.find("OpenCL 1.1") != std::string::npos)
272 {
273 return CLVersion::CL11;
274 }
275 else if(version_str.find("OpenCL 1.0") != std::string::npos)
276 {
277 return CLVersion::CL10;
278 }
279
280 return CLVersion::UNKNOWN;
281}
282
Vidhya Sudhan Loganathaneb8a3992018-04-10 12:23:22 +0100283bool device_supports_extension(const cl::Device &device, const char *extension_name)
284{
285 std::string extensions = device.getInfo<CL_DEVICE_EXTENSIONS>();
286 auto pos = extensions.find(extension_name);
287 return (pos != std::string::npos);
288}
289
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100290bool cl_winograd_convolution_layer_supported(const Size2D &output_tile, const Size2D &kernel_size, DataLayout data_layout)
291{
292 ARM_COMPUTE_ERROR_ON(data_layout == DataLayout::UNKNOWN);
293
294 using WinogradConfiguration = std::pair<std::pair<int, int>, std::pair<int, int>>;
295
Giorgio Arena149fdf32018-07-04 17:03:33 +0100296 std::vector<WinogradConfiguration> winograd_configs_nchw =
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100297 {
298 WinogradConfiguration(std::pair<int, int>(1, 2), std::pair<int, int>(1, 3)),
299 WinogradConfiguration(std::pair<int, int>(1, 4), std::pair<int, int>(1, 3)),
300 WinogradConfiguration(std::pair<int, int>(2, 1), std::pair<int, int>(3, 1)),
301 WinogradConfiguration(std::pair<int, int>(4, 1), std::pair<int, int>(3, 1)),
302 WinogradConfiguration(std::pair<int, int>(2, 2), std::pair<int, int>(3, 3)),
303 WinogradConfiguration(std::pair<int, int>(4, 4), std::pair<int, int>(3, 3)),
Gian Marco Iodice876be2a2018-07-03 12:22:09 +0100304 WinogradConfiguration(std::pair<int, int>(4, 4), std::pair<int, int>(5, 5)),
305 WinogradConfiguration(std::pair<int, int>(4, 1), std::pair<int, int>(5, 1)),
306 WinogradConfiguration(std::pair<int, int>(1, 4), std::pair<int, int>(1, 5))
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100307 };
308
Giorgio Arena149fdf32018-07-04 17:03:33 +0100309 std::vector<WinogradConfiguration> winograd_configs_nhwc =
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100310 {
311 WinogradConfiguration(std::pair<int, int>(2, 2), std::pair<int, int>(3, 3)),
Giorgio Arena149fdf32018-07-04 17:03:33 +0100312 WinogradConfiguration(std::pair<int, int>(1, 4), std::pair<int, int>(1, 3)),
313 WinogradConfiguration(std::pair<int, int>(4, 1), std::pair<int, int>(3, 1)),
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100314 WinogradConfiguration(std::pair<int, int>(4, 4), std::pair<int, int>(3, 3)),
Gian Marco Iodiced28b7512018-07-06 12:59:28 +0100315 WinogradConfiguration(std::pair<int, int>(4, 4), std::pair<int, int>(5, 5)),
316 WinogradConfiguration(std::pair<int, int>(4, 1), std::pair<int, int>(5, 1)),
Michele Di Giorgiof955d512019-02-27 14:26:51 +0000317 WinogradConfiguration(std::pair<int, int>(1, 4), std::pair<int, int>(1, 5)),
318 WinogradConfiguration(std::pair<int, int>(1, 2), std::pair<int, int>(1, 7)),
319 WinogradConfiguration(std::pair<int, int>(2, 1), std::pair<int, int>(7, 1)),
320 WinogradConfiguration(std::pair<int, int>(2, 2), std::pair<int, int>(7, 7)),
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100321 };
322
323 auto p = std::make_pair(std::pair<int, int>(output_tile.width, output_tile.height),
324 std::pair<int, int>(kernel_size.width, kernel_size.height));
325
326 // Return true if supported
327 if(data_layout == DataLayout::NCHW)
328 {
Giorgio Arena149fdf32018-07-04 17:03:33 +0100329 return (std::find(winograd_configs_nchw.begin(), winograd_configs_nchw.end(), p) != winograd_configs_nchw.end());
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100330 }
331 else
332 {
Giorgio Arena149fdf32018-07-04 17:03:33 +0100333 return (std::find(winograd_configs_nhwc.begin(), winograd_configs_nhwc.end(), p) != winograd_configs_nhwc.end());
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100334 }
335}
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000336
337size_t preferred_vector_width(const cl::Device &device, const DataType dt)
338{
339 switch(dt)
340 {
341 case DataType::U8:
342 case DataType::S8:
343 case DataType::QASYMM8:
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000344 case DataType::QASYMM8_SIGNED:
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100345 case DataType::QSYMM8:
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100346 case DataType::QSYMM8_PER_CHANNEL:
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000347 return device.getInfo<CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR>();
348 case DataType::U16:
349 case DataType::S16:
Michele Di Giorgio6997fc92019-06-18 10:23:22 +0100350 case DataType::QSYMM16:
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +0100351 case DataType::QASYMM16:
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000352 return device.getInfo<CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT>();
353 case DataType::U32:
354 case DataType::S32:
355 return device.getInfo<CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT>();
356 case DataType::F16:
357 case DataType::F32:
358 return device.getInfo<CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT>();
359 case DataType::U64:
360 case DataType::S64:
361 return device.getInfo<CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG>();
362 default:
363 return 1;
364 }
365}
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000366
367bool preferred_dummy_work_items_support(const cl::Device &device)
368{
369 ARM_COMPUTE_UNUSED(device);
370 // TODO (COMPMID-2044)
371 return true;
372}
Pablo Tellodb8485a2019-09-24 11:03:47 +0100373
Gian Marco Iodicea98dee22020-06-02 12:12:35 +0100374bool image2d_from_buffer_supported(const cl::Device &device)
375{
376 return device_supports_extension(device, "cl_khr_image2d_from_buffer");
377}
378
379size_t get_cl_image_pitch_alignment(const cl::Device &device)
380{
381 cl_uint pixel_aligment = 0;
382
383 cl_int err = clGetDeviceInfo(device(), CL_DEVICE_IMAGE_PITCH_ALIGNMENT, sizeof(cl_uint), &pixel_aligment, nullptr);
384
385 if(err == CL_SUCCESS)
386 {
387 return pixel_aligment;
388 }
389 else
390 {
391 return 0;
392 }
393}
394
Viet-Hoa Dof8bb0922022-05-30 15:15:15 +0100395bool get_cl_non_uniform_work_group_supported(const cl::Device &device)
396{
397 cl_bool supported = CL_FALSE;
398
399 cl_int err = clGetDeviceInfo(device(), CL_DEVICE_NON_UNIFORM_WORK_GROUP_SUPPORT, sizeof(cl_bool), &supported, nullptr);
400
401 return (err == CL_SUCCESS && supported == CL_TRUE);
402}
403
Manuel Bottini256c0b92020-04-21 13:29:30 +0100404cl::Kernel create_kernel(const CLCompileContext &ctx, const std::string &kernel_name, const std::set<std::string> &build_opts)
Michalis Spyrou11d49182020-03-26 10:31:32 +0000405{
Georgios Pinitas908f6162021-05-04 10:11:09 +0100406 opencl::ClKernelLibrary &klib = opencl::ClKernelLibrary::get();
407
408 const std::string program_name = klib.program_name(kernel_name);
409 auto kernel_src = klib.program(program_name);
410 const std::string kernel_path = klib.kernel_path();
411
412 return static_cast<cl::Kernel>(ctx.create_kernel(kernel_name, program_name, kernel_src.program, kernel_path, build_opts, kernel_src.is_binary));
Michalis Spyrou11d49182020-03-26 10:31:32 +0000413}
414
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100415cl::NDRange create_lws_hint_parallel_implementations(unsigned int input_dimension, unsigned int vector_size)
416{
417 const unsigned int width_leftover = input_dimension % vector_size;
418 const unsigned int border_width = (width_leftover != 0) ? vector_size - width_leftover : 0;
419 const unsigned int num_of_threads = ((input_dimension + border_width) / 16);
420 return cl::NDRange(std::min(8U, num_of_threads));
421}
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000422
423bool get_wbsm_support_info(const cl::Device &device)
424{
425 cl_bitfield capabilities = 0;
Sheri Zhang79cb9452021-09-07 14:51:49 +0100426 cl_int err = clGetDeviceInfo(device.get(), CL_DEVICE_SCHEDULING_CONTROLS_CAPABILITIES_ARM, sizeof(cl_bitfield), &capabilities, nullptr);
427 if((err == CL_SUCCESS) && (capabilities & CL_KERNEL_EXEC_INFO_WORKGROUP_BATCH_SIZE_MODIFIER_ARM))
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000428 {
429 return true;
430 }
431 return false;
432}
433
434void set_wbsm(cl::Kernel &kernel, cl_int wbsm_hint)
435{
436 cl_int err = clSetKernelExecInfo(kernel.get(),
Sheri Zhang79cb9452021-09-07 14:51:49 +0100437 CL_KERNEL_EXEC_INFO_WORKGROUP_BATCH_SIZE_MODIFIER_ARM,
Manuel Bottinibe9f9f92021-01-25 15:07:17 +0000438 sizeof(cl_int),
439 &wbsm_hint);
440 ARM_COMPUTE_UNUSED(err);
441 ARM_COMPUTE_ERROR_ON(err != CL_SUCCESS);
442}
443
Gian Marco Iodicead9a7ed2022-09-16 14:14:21 +0100444bool export_to_cl_image(const ITensorInfo *tensor)
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100445{
446 if(tensor->tensor_shape()[0] % 4)
447 {
448 return false;
449 }
450
451 // If not floating point
452 if(!is_data_type_float(tensor->data_type()))
453 {
454 return false;
455 }
456
457 // Check if the cl_khr_image2d_from_buffer extension is supported on the target platform
458 if(!image2d_from_buffer_supported(CLKernelLibrary::get().get_device()))
459 {
460 return false;
461 }
462
463 // Check cl image pitch alignment
464 if(get_cl_image_pitch_alignment(CLKernelLibrary::get().get_device()) == 0)
465 {
466 return false;
467 }
468
469 const size_t image_w = tensor->tensor_shape()[0] / 4;
470 const size_t image_h = tensor->tensor_shape()[1] * tensor->tensor_shape()[2] * tensor->tensor_shape()[3];
471 const size_t max_image_w = CLKernelLibrary::get().get_device().getInfo<CL_DEVICE_IMAGE2D_MAX_WIDTH>();
472 const size_t max_image_h = CLKernelLibrary::get().get_device().getInfo<CL_DEVICE_IMAGE2D_MAX_HEIGHT>();
473
474 if(image_w > max_image_w || image_h > max_image_h)
475 {
476 return false;
477 }
478
479 return true;
480}
481
Gian Marco Iodice5e281812021-07-06 13:19:41 +0100482void set_unroll_with_pragma(CLBuildOptions &built_opts, std::initializer_list<int> values)
483{
484 for(const int value : values)
485 {
486 if(value > max_manual_loop_unrolling)
487 {
488 built_opts.add_option("-DUNROLL_WITH_PRAGMA");
489 return;
490 }
491 }
492}
493
Gunes Bayir4bfc70e2021-12-10 16:17:56 +0000494bool arm_matrix_multiply_supported(const cl::Device &device)
495{
496 return device_supports_extension(device, "cl_arm_matrix_multiply");
497}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100498} // namespace arm_compute