blob: eeb3e7699d3a712890148c9179750695f1d97760 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 ARM Limited.
3 *
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#ifndef __ARM_COMPUTE_CLHELPERS_H__
25#define __ARM_COMPUTE_CLHELPERS_H__
26
27#include "arm_compute/core/CL/OpenCL.h"
28#include "arm_compute/core/Helpers.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010029#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31#include <string>
32
33namespace arm_compute
34{
35enum class DataType;
36enum class GPUTarget;
37
38/** Enable operation operations on GPUTarget enumerations */
39template <>
40struct enable_bitwise_ops<arm_compute::GPUTarget>
41{
42 static constexpr bool value = true;
43};
44
45/** Max vector width of an OpenCL vector */
46static constexpr const unsigned int max_cl_vector_width = 16;
47
48/** Translates a tensor data type to the appropriate OpenCL type.
49 *
50 * @param[in] dt @ref DataType to be translated to OpenCL type.
51 *
52 * @return The string specifying the OpenCL type to be used.
53 */
54std::string get_cl_type_from_data_type(const DataType &dt);
55
Georgios Pinitasac4e8732017-07-05 17:02:25 +010056/** Translates fixed point tensor data type to the underlying OpenCL type.
57 *
58 * @param[in] dt @ref DataType to be translated to OpenCL type.
59 *
60 * @return The string specifying the underlying OpenCL type to be used.
61 */
62std::string get_underlying_cl_type_from_data_type(const DataType &dt);
63
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064/** Translates a given gpu device target to string.
65 *
66 * @param[in] target Given gpu target.
67 *
68 * @return The string describing the target.
69 */
70const std::string &string_from_target(GPUTarget target);
71
72/** Helper function to create and return a unique_ptr pointed to a CL kernel object
73 * It also calls the kernel's configuration.
74 *
75 * @param[in] args All the arguments that need pass to kernel's configuration.
76 *
77 * @return A unique pointer pointed to a CL kernel object
78 */
79template <typename Kernel, typename... T>
80std::unique_ptr<Kernel> create_configure_kernel(T &&... args)
81{
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010082 std::unique_ptr<Kernel> k = arm_compute::support::cpp14::make_unique<Kernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 k->configure(std::forward<T>(args)...);
84 return k;
85}
86
87/** Helper function to create and return a unique_ptr pointed to a CL kernel object
88 *
89 * @return A unique pointer pointed to a CL kernel object
90 */
91template <typename Kernel>
92std::unique_ptr<Kernel> create_kernel()
93{
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010094 std::unique_ptr<Kernel> k = arm_compute::support::cpp14::make_unique<Kernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095 return k;
96}
97
98/** Helper function to get the GPU target from CL device
99 *
100 * @param[in] device A CL device
101 *
102 * @return the GPU target
103 */
104GPUTarget get_target_from_device(cl::Device &device);
105
106/** Helper function to get the GPU arch
107 *
108 * @param[in] target GPU target
109 *
110 * @return the GPU target which shows the arch
111 */
112GPUTarget get_arch_from_target(GPUTarget target);
steniu0134702472017-07-11 09:22:58 +0100113
114/** Helper function to get the highest OpenCL version supported
115 *
116 * @param[in] device A CL device
117 *
118 * @return the highest OpenCL version supported
119 */
120CLVersion get_cl_version(const cl::Device &device);
121/** Helper function to check whether the arm_non_uniform_work_group_size extension is supported
122 *
123 * @param[in] device A CL device
124 *
125 * @return True if the extension is supported
126 */
127bool non_uniform_workgroup_support(const cl::Device &device);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128}
Anthony Barbierac69aa12017-07-03 17:39:37 +0100129#endif /* __ARM_COMPUTE_CLHELPERS_H__ */