-
Notifications
You must be signed in to change notification settings - Fork 10
/
program.c
245 lines (206 loc) · 6.06 KB
/
program.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
238
239
240
241
242
243
244
245
/**
* The OpenCL PHP extension
*
* @package php-opencl
* @author Ryusuke SEKIYAMA <[email protected]>
* @copyright 2012 Ryusuke SEKIYAMA
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
#include "program.h"
#include "params.h"
#define get_info ((phpcl_get_info_func_t)_get_program_info)
#define get_info_ex NULL
/* {{{ type definitions */
typedef void (*build_program_callback_func_t)(cl_program, void *);
/* }}} */
/* {{{ globals */
static const phpcl_info_param_t program_info_params[] = {
{ NULL, 0, 0 }
};
/* }}} */
/* {{{ _get_program_info() */
static cl_int _get_program_info(cl_program program,
void *reserved __attribute__ ((unused)),
cl_program_info name,
size_t value_size,
void *value,
size_t *value_size_ret)
{
return clGetProgramInfo(program, name, value_size, value, value_size_ret);
}
/* }}} */
/* {{{ _get_program_info_all() */
static void _get_program_info_all(
INTERNAL_FUNCTION_PARAMETERS,
cl_program program)
{
const phpcl_info_param_t *param = program_info_params;
char buf[32] = {0};
array_init_size(return_value, 8);
snprintf(buf, sizeof(buf), "%p", program);
add_assoc_string(return_value, "id", buf, 1);
while (param->key != NULL) {
zval *entry = phpcl_get_info(get_info, get_info_ex,
program, NULL, param TSRMLS_CC);
if (entry) {
add_assoc_zval(return_value, param->key, entry);
} else {
add_assoc_null(return_value, param->key);
}
param++;
}
}
/* }}} */
/* {{{ _get_program_info_by_name() */
static void _get_program_info_by_name(
INTERNAL_FUNCTION_PARAMETERS,
cl_program program, cl_int name)
{
const phpcl_info_param_t *param = program_info_params;
RETVAL_NULL();
while (param->key != NULL) {
if (param->name == name) {
zval *entry = phpcl_get_info(get_info, get_info_ex,
program, NULL, param TSRMLS_CC);
if (entry) {
RETVAL_ZVAL(entry, 0, 1);
}
return;
}
param++;
}
}
/* }}} */
/* {{{ mixed cl_get_program_info(resource cl_program program[, int name]) */
PHPCL_FUNCTION(cl_get_program_info)
{
zval *zid = NULL;
phpcl_program_t *prg = NULL;
long name = 0;
RETVAL_FALSE;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"r|l", &zid, &name) == FAILURE) {
return;
}
ZEND_FETCH_RESOURCE(prg, phpcl_program_t *, &zid, -1,
"cl_program", phpcl_le_program());
if (ZEND_NUM_ARGS() == 2) {
_get_program_info_by_name(INTERNAL_FUNCTION_PARAM_PASSTHRU, prg->program, (cl_int)name);
} else {
_get_program_info_all(INTERNAL_FUNCTION_PARAM_PASSTHRU, prg->program);
}
}
/* }}} */
/* {{{ resource cl_program cl_create_program_with_source(resource cl_context context, mixed source[, int &errcode]); */
PHPCL_FUNCTION(cl_create_program_with_source)
{
cl_int errcode = CL_SUCCESS;
cl_program program = NULL;
zval *zcontext = NULL;
phpcl_context_t *ctx = NULL;
zval *zstring = NULL;
zval *zerrcode = NULL;
RETVAL_FALSE;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"rz|z", &zcontext, &zstring, &zerrcode) == FAILURE) {
return;
}
ZEND_FETCH_RESOURCE(ctx, phpcl_context_t *, &zcontext, -1,
"cl_context", phpcl_le_context());
if (Z_TYPE_P(zstring) == IS_STRING) {
const char *strings[] = { (const char *)Z_STRVAL_P(zstring) };
const size_t lengths[] = { (const size_t)Z_STRLEN_P(zstring) };
program = clCreateProgramWithSource(ctx->context, 1, strings, lengths, &errcode);
} else if (Z_TYPE_P(zstring) == IS_ARRAY) {
/* TODO: support multiple sources
cl_uint count = 0;
char **strings = NULL;
size_t *lengths = NULL;
program = clCreateProgramWithSource(ctx->context, count, strings, lengths, &errcode);
efree(strings);
efree(lengths);
*/
}
if (zerrcode) {
zval_dtor(zerrcode);
ZVAL_LONG(zerrcode, (long)errcode);
}
if (program) {
phpcl_program_t *prg = emalloc(sizeof(phpcl_program_t));
prg->program = program;
prg->callback = NULL;
prg->data = NULL;
ZEND_REGISTER_RESOURCE(return_value, prg, phpcl_le_program());
}
}
/* }}} */
/* {{{ void cl_build_program(resource cl_program program[, mixed devices[, string options[, callback callback[, ]]]]) */
PHPCL_FUNCTION(cl_build_program)
{
cl_int errcode = CL_SUCCESS;
zval *zprogram = NULL;
phpcl_program_t *prg = NULL;
zval *zdevices = NULL;
cl_device_id *devices = NULL;
cl_uint num_devices = 0;
char *options = NULL;
int options_len = 0;
zval *zcallback = NULL;
build_program_callback_func_t notify_func = NULL;
zval *zdata = NULL;
void *userdata = NULL;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"r|z!/s!z/z/", &zprogram, &zdevices,
&options, &options_len, &zcallback, &zdata) == FAILURE) {
return;
}
ZEND_FETCH_RESOURCE(prg, phpcl_program_t *, &zprogram, -1,
"cl_program", phpcl_le_program());
if (!zdevices) {
cl_context context = NULL;
errcode = clGetProgramInfo(prg->program, CL_PROGRAM_CONTEXT,
sizeof(cl_context), &context, NULL);
if (errcode != CL_SUCCESS) {
php_error_docref(NULL TSRMLS_CC, E_WARNING,
"%s", phpcl_errstr(errcode));
return;
}
devices = phpcl_context_get_devices(context, &num_devices, &errcode);
if (!devices) {
php_error_docref(NULL TSRMLS_CC, E_WARNING,
"%s", phpcl_errstr(errcode));
return;
}
} else {
devices = phpcl_get_devicecs(zdevices, 2, &num_devices TSRMLS_CC);
if (!devices) {
return;
}
}
if (zcallback) {
if (!phpcl_is_callable(zcallback, 4 TSRMLS_CC)) {
efree(devices);
return;
}
}
if (zcallback) {
prg->callback = zcallback;
Z_ADDREF_P(zcallback);
if (zdata) {
prg->data = zdata;
Z_ADDREF_P(zdata);
}
}
clBuildProgram(prg->program, num_devices, devices,
options, notify_func, prg);
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
*/