forked from rsky/php-opencl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.c
237 lines (198 loc) · 5.42 KB
/
context.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/**
* 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 "context.h"
#include "params.h"
#define get_info ((phpcl_get_info_func_t)_get_context_info)
#define get_info_ex NULL
/* {{{ type definitions */
typedef void (*create_context_callback_func_t)(const char *, const void *, size_t, void *);
/* }}} */
/* {{{ globals */
static const phpcl_info_param_t context_info_params[] = {
{ NULL, 0, 0 }
};
/* }}} */
/* {{{ _get_context_info() */
static cl_int _get_context_info(cl_context context,
void *reserved __attribute__ ((unused)),
cl_context_info name,
size_t value_size,
void *value,
size_t *value_size_ret)
{
return clGetContextInfo(context, name, value_size, value, value_size_ret);
}
/* }}} */
/* {{{ _get_context_info_all() */
static void _get_context_info_all(
INTERNAL_FUNCTION_PARAMETERS,
cl_context context)
{
const phpcl_info_param_t *param = context_info_params;
char buf[32] = {0};
array_init_size(return_value, 8);
snprintf(buf, sizeof(buf), "%p", context);
add_assoc_string(return_value, "id", buf, 1);
while (param->key != NULL) {
zval *entry = phpcl_get_info(get_info, get_info_ex,
context, NULL, param TSRMLS_CC);
if (entry) {
add_assoc_zval(return_value, param->key, entry);
} else {
add_assoc_null(return_value, param->key);
}
param++;
}
}
/* }}} */
/* {{{ _get_context_info_by_name() */
static void _get_context_info_by_name(
INTERNAL_FUNCTION_PARAMETERS,
cl_context context, cl_int name)
{
const phpcl_info_param_t *param = context_info_params;
RETVAL_NULL();
while (param->key != NULL) {
if (param->name == name) {
zval *entry = phpcl_get_info(get_info, get_info_ex,
context, NULL, param TSRMLS_CC);
if (entry) {
RETVAL_ZVAL(entry, 0, 1);
}
return;
}
param++;
}
}
/* }}} */
/* {{{ mixed cl_get_context_info(resource cl_context context[, int name]) */
PHPCL_FUNCTION(cl_get_context_info)
{
zval *zid = NULL;
cl_context context = NULL;
long name = 0;
RETVAL_FALSE;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"r|l", &zid, &name) == FAILURE) {
return;
}
ZEND_FETCH_RESOURCE(context, cl_context, &zid, -1,
"cl_context", phpcl_le_context());
if (ZEND_NUM_ARGS() == 2) {
_get_context_info_by_name(INTERNAL_FUNCTION_PARAM_PASSTHRU, context, (cl_int)name);
} else {
_get_context_info_all(INTERNAL_FUNCTION_PARAM_PASSTHRU, context);
}
}
/* }}} */
/* {{{ phpcl_context_get_devices() */
PHPCL_LOCAL cl_device_id *
phpcl_context_get_devices(cl_context context,
cl_uint *num_devices_ret,
cl_int *errcode_ret)
{
cl_int errcode = CL_SUCCESS;
cl_uint num_devices = 0;
cl_device_id *devices = NULL;
errcode = clGetContextInfo(context, CL_CONTEXT_NUM_DEVICES,
sizeof(cl_uint), &num_devices, NULL);
if (errcode != CL_SUCCESS) {
if (errcode_ret) {
*errcode_ret = errcode;
}
return NULL;
}
devices = ecalloc(num_devices, sizeof(cl_device_id));
errcode = clGetContextInfo(context, CL_CONTEXT_DEVICES,
num_devices * sizeof(cl_device_id), devices, NULL);
if (errcode != CL_SUCCESS) {
efree(devices);
if (errcode_ret) {
*errcode_ret = errcode;
}
return NULL;
}
if (num_devices_ret) {
*num_devices_ret = num_devices;
}
return devices;
}
/* }}} */
/* {{{ resource cl_context cl_create_context(mixed device[, array properties[, callback callback[, mixed userdata[, int &errcode]]]]) */
PHPCL_FUNCTION(cl_create_context)
{
cl_int errcode = CL_SUCCESS;
cl_context context = NULL;
zval *zdevices = NULL;
cl_device_id *devices = NULL;
cl_uint num_devices = 0;
zval *zproperties = NULL;
cl_context_properties *properties = NULL;
zval *zcallback = NULL;
create_context_callback_func_t notify_func = NULL;
zval *zdata = NULL;
void *userdata = NULL;
zval *zerrcode = NULL;
RETVAL_FALSE;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"z|z!/z/z/z", &zdevices, &zproperties,
&zcallback, &zdata, &zerrcode) == FAILURE) {
return;
}
devices = phpcl_get_devicecs(zdevices, 1, &num_devices TSRMLS_CC);
if (!devices) {
return;
}
if (zproperties) {
/* TODO: support properties */
}
if (zcallback) {
if (!phpcl_is_callable(zcallback, 3 TSRMLS_CC)) {
efree(devices);
return;
}
}
phpcl_context_t *ctx = emalloc(sizeof(phpcl_context_t));
ctx->callback = NULL;
ctx->data = NULL;
if (zcallback) {
ctx->callback = zcallback;
if (zdata) {
ctx->data = zdata;
}
}
context = clCreateContext(properties, num_devices, devices,
notify_func, ctx, &errcode);
if (zerrcode) {
zval_dtor(zerrcode);
ZVAL_LONG(zerrcode, (long)errcode);
}
if (context) {
ctx->context = context;
if (zcallback) {
Z_ADDREF_P(zcallback);
if (zdata) {
Z_ADDREF_P(zdata);
}
}
ZEND_REGISTER_RESOURCE(return_value, ctx, phpcl_le_context());
} else {
efree(ctx);
}
efree(devices);
}
/* }}} */
/*
* 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
*/