forked from KhronosGroup/OpenCL-ICD-Loader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathicd_version.h
More file actions
57 lines (51 loc) · 1.93 KB
/
icd_version.h
File metadata and controls
57 lines (51 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (c) 2016-2026 The Khronos Group Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* OpenCL is a trademark of Apple Inc. used under license by Khronos.
*/
#ifndef _ICD_VERSION_H_
#define _ICD_VERSION_H_
#define OPENCL_ICD_LOADER_NAME_STRING "Khronos OpenCL ICD Loader"
#define OPENCL_ICD_LOADER_VENDOR_STRING "Khronos Group"
#define OPENCL_ICD_LOADER_VAL(_v) #_v
#define OPENCL_ICD_LOADER_TOSTRING(_d) OPENCL_ICD_LOADER_VAL(_d)
#define OPENCL_ICD_LOADER_VERSION_STRING \
OPENCL_ICD_LOADER_TOSTRING(OPENCL_ICD_LOADER_VERSION_MAJOR) "." \
OPENCL_ICD_LOADER_TOSTRING(OPENCL_ICD_LOADER_VERSION_MINOR) "." \
OPENCL_ICD_LOADER_TOSTRING(OPENCL_ICD_LOADER_VERSION_REV)
#if CL_TARGET_OPENCL_VERSION == 100
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "1.0"
#endif
#if CL_TARGET_OPENCL_VERSION == 110
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "1.1"
#endif
#if CL_TARGET_OPENCL_VERSION == 120
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "1.2"
#endif
#if CL_TARGET_OPENCL_VERSION == 200
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "2.0"
#endif
#if CL_TARGET_OPENCL_VERSION == 210
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "2.1"
#endif
#if CL_TARGET_OPENCL_VERSION == 220
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "2.2"
#endif
#if CL_TARGET_OPENCL_VERSION == 300
#define OPENCL_ICD_LOADER_OCL_VERSION_NUMBER "3.0"
#endif
#define OPENCL_ICD_LOADER_OCL_VERSION_STRING \
"OpenCL " OPENCL_ICD_LOADER_OCL_VERSION_NUMBER
#endif