aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL/CLTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/CL/CLTypes.h')
-rw-r--r--arm_compute/core/CL/CLTypes.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/arm_compute/core/CL/CLTypes.h b/arm_compute/core/CL/CLTypes.h
index c5643d8939..cf11f6ecd7 100644
--- a/arm_compute/core/CL/CLTypes.h
+++ b/arm_compute/core/CL/CLTypes.h
@@ -37,5 +37,15 @@ enum class GPUTarget
T800 = 0x130,
G70 = 0x210
};
+
+/* Available OpenCL Version */
+enum class CLVersion
+{
+ CL10, /* the OpenCL 1.0 */
+ CL11, /* the OpenCL 1.1 */
+ CL12, /* the OpenCL 1.2 */
+ CL20, /* the OpenCL 2.0 and above */
+ UNKNOWN /* unkown version */
+};
}
#endif /* __ARM_COMPUTE_CL_TYPES_H__ */