-
Notifications
You must be signed in to change notification settings - Fork 23
/
ocl_test.c
114 lines (98 loc) · 3.62 KB
/
ocl_test.c
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
Copyright (c) 2012-2020, Brice Videau <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define CL_TARGET_OPENCL_VERSION 300
#include <CL/opencl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void print_error(cl_int error) {
switch (error) {
case CL_SUCCESS: break ;
case CL_PLATFORM_NOT_FOUND_KHR:
printf("No platforms found!\n");
break;
case CL_INVALID_PLATFORM:
printf("Invalid platform\n");
break;
default:
printf("OpenCL error: %i\n", error);
}
}
void show_platform(cl_platform_id pid, int show_extensions) {
char *platform_vendor;
size_t param_value_size_ret;
cl_int error;
error = clGetPlatformInfo(pid, CL_PLATFORM_VENDOR, 0, NULL, ¶m_value_size_ret );
print_error(error);
if (error != CL_SUCCESS)
return;
platform_vendor = (char *)malloc(param_value_size_ret);
clGetPlatformInfo(pid, CL_PLATFORM_VENDOR, param_value_size_ret, platform_vendor, NULL );
printf("%s\n",platform_vendor);
free(platform_vendor);
if (show_extensions) {
error = clGetPlatformInfo(pid, CL_PLATFORM_EXTENSIONS, 0, NULL, ¶m_value_size_ret );
print_error(error);
platform_vendor = (char *)malloc(param_value_size_ret);
clGetPlatformInfo(pid, CL_PLATFORM_EXTENSIONS, param_value_size_ret, platform_vendor, NULL );
printf("Extensions: %s\n",platform_vendor);
free(platform_vendor);
}
}
int main(int argc, char* argv[]) {
cl_platform_id *platforms;
cl_uint num_platforms;
cl_int error;
int show_extensions=0;
if (argc >= 2 && strcmp(argv[1], "--show-extensions")==0) {
show_extensions=1;
argv++;
}
int default_platform=0;
if (argc >= 2 && strcmp(argv[1], "--default-platform")==0) {
default_platform=1;
}
error = clGetPlatformIDs(0, NULL, &num_platforms);
if( error == CL_SUCCESS ) {
printf("Found %u platforms!\n", num_platforms);
} else if( error == CL_PLATFORM_NOT_FOUND_KHR ) {
print_error(error);
if (default_platform) {
show_platform(NULL, show_extensions);
}
exit(0);
} else {
print_error(error);
exit(-1);
}
platforms = (cl_platform_id *)malloc(sizeof(cl_platform_id *) * num_platforms);
error = clGetPlatformIDs(num_platforms, platforms, NULL);
print_error(error);
cl_uint i;
for(i=0; i<num_platforms; i++){
show_platform(platforms[i], show_extensions);
}
if (default_platform) {
show_platform(NULL, show_extensions);
}
return 0;
}