forked from rsky/php-opencl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform.c
172 lines (141 loc) · 4.19 KB
/
platform.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/**
* The OpenCL PHP extension
*
* @package php-opencl
* @author Ryusuke SEKIYAMA <rsky0711@gmail.com>
* @copyright 2012 Ryusuke SEKIYAMA
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
#include "platform.h"
#include "params.h"
#define get_info ((phpcl_get_info_func_t)_get_platform_info)
#define get_info_ex NULL
/* {{{ globals */
static const phpcl_info_param_t platform_info_params[] = {
{ "profile", CL_PLATFORM_PROFILE, INFO_TYPE_STRING },
{ "version", CL_PLATFORM_VERSION, INFO_TYPE_STRING },
{ "name", CL_PLATFORM_NAME, INFO_TYPE_STRING },
{ "vendor", CL_PLATFORM_VENDOR, INFO_TYPE_STRING },
{ "extensions", CL_PLATFORM_EXTENSIONS, INFO_TYPE_STRING },
{ NULL, 0, 0 }
};
/* }}} */
/* {{{ _get_platform_info() */
static cl_int _get_platform_info(cl_platform_id platform,
void *reserved __attribute__ ((unused)),
cl_platform_info name,
size_t value_size,
void *value,
size_t *value_size_ret)
{
return clGetPlatformInfo(platform, name, value_size, value, value_size_ret);
}
/* }}} */
/* {{{ _get_platform_info_all() */
static void _get_platform_info_all(
INTERNAL_FUNCTION_PARAMETERS,
cl_platform_id platform)
{
const phpcl_info_param_t *param = platform_info_params;
char buf[32] = {0};
array_init_size(return_value, 8);
snprintf(buf, sizeof(buf), "%p", platform);
add_assoc_string(return_value, "id", buf, 1);
while (param->key != NULL) {
zval *entry = phpcl_get_info(get_info, get_info_ex,
platform, NULL, param TSRMLS_CC);
if (entry) {
add_assoc_zval(return_value, param->key, entry);
} else {
add_assoc_null(return_value, param->key);
}
param++;
}
}
/* }}} */
/* {{{ _get_platform_info_by_name() */
static void _get_platform_info_by_name(
INTERNAL_FUNCTION_PARAMETERS,
cl_platform_id platform, cl_int name)
{
const phpcl_info_param_t *param = platform_info_params;
RETVAL_NULL();
while (param->key != NULL) {
if (param->name == name) {
zval *entry = phpcl_get_info(get_info, get_info_ex,
platform, NULL, param TSRMLS_CC);
if (entry) {
RETVAL_ZVAL(entry, 0, 1);
}
return;
}
param++;
}
}
/* }}} */
/* {{{ mixed cl_get_platform_info(resource cl_platform platform[, int name]) */
PHPCL_FUNCTION(cl_get_platform_info)
{
zval *zid = NULL;
cl_platform_id platform = NULL;
long name = 0;
RETVAL_FALSE;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"r|l", &zid, &name) == FAILURE) {
return;
}
ZEND_FETCH_RESOURCE(platform, cl_platform_id, &zid, -1,
"cl_platform", phpcl_le_platform());
if (ZEND_NUM_ARGS() == 2) {
_get_platform_info_by_name(INTERNAL_FUNCTION_PARAM_PASSTHRU, platform, (cl_int)name);
} else {
_get_platform_info_all(INTERNAL_FUNCTION_PARAM_PASSTHRU, platform);
}
}
/* }}} */
/* {{{ array cl_get_platform_ids(void) */
PHPCL_FUNCTION(cl_get_platform_ids)
{
cl_int errcode = CL_SUCCESS;
cl_uint num_entries = 0;
cl_platform_id *platforms = NULL;
cl_uint index = 0;
RETVAL_FALSE;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
errcode = clGetPlatformIDs(0, NULL, &num_entries);
if (errcode != CL_SUCCESS) {
php_error_docref(NULL TSRMLS_CC, E_WARNING,
"clGetPlatformIDs() failed [%s]", phpcl_errstr(errcode));
}
platforms = ecalloc(num_entries, sizeof(cl_platform_id));
if (!platforms) {
return;
}
errcode = clGetPlatformIDs(num_entries, platforms, NULL);
if (errcode != CL_SUCCESS) {
php_error_docref(NULL TSRMLS_CC, E_WARNING,
"clGetPlatformIDs() failed [%s]", phpcl_errstr(errcode));
efree(platforms);
return;
}
array_init_size(return_value, num_entries);
for (index = 0; index < num_entries; index++) {
cl_platform_id platform = platforms[index];
zval *entry;
MAKE_STD_ZVAL(entry);
ZEND_REGISTER_RESOURCE(entry, platform, phpcl_le_platform());
add_next_index_zval(return_value, entry);
}
efree(platforms);
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/