Skip to content
Snippets Groups Projects
Commit 5cb57e51 authored by Yichao Yu's avatar Yichao Yu
Browse files

use ArgBuffer instead of SimpleOutArg

parent a4c9ea4d
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,7 @@ get_opaque_info(cl_int (*func)(ArgTypes...), const char *name, ...@@ -136,7 +136,7 @@ get_opaque_info(cl_int (*func)(ArgTypes...), const char *name,
{ {
typename CLObj::cl_type param_value; typename CLObj::cl_type param_value;
call_guarded(func, name, args..., sizeof(param_value), call_guarded(func, name, args..., sizeof(param_value),
out_arg(&param_value), nullptr); arg_buf(param_value), nullptr);
generic_info info; generic_info info;
info.dontfree = 0; info.dontfree = 0;
info.opaque_class = CLObj::class_id; info.opaque_class = CLObj::class_id;
...@@ -178,7 +178,7 @@ get_int_info(cl_int (*func)(ArgTypes...), const char *name, ...@@ -178,7 +178,7 @@ get_int_info(cl_int (*func)(ArgTypes...), const char *name,
{ {
pyopencl_buf<T> param_value; pyopencl_buf<T> param_value;
call_guarded(func, name, args..., sizeof(T), call_guarded(func, name, args..., sizeof(T),
out_arg(param_value.get()), nullptr); arg_buf(*param_value.get()), nullptr);
generic_info info; generic_info info;
info.dontfree = 0; info.dontfree = 0;
info.opaque_class = CLASS_NONE; info.opaque_class = CLASS_NONE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment