OpenCL C++ Bindings
|
Public Types | |
typedef Event | result_type |
Return type of the functor. | |
Public Member Functions | |
KernelFunctor (Kernel kernel) | |
KernelFunctor (const Program &program, const string name, cl_int *err=NULL) | |
Event | operator() (const EnqueueArgs &args, Ts... ts) |
Event | operator() (const EnqueueArgs &args, Ts... ts, cl_int &error) |
cl_int | setSVMPointers (const vector< void * > &pointerList) |
template<typename T0 , typename... T1s> | |
cl_int | setSVMPointers (const T0 &t0, T1s &... ts) |
Kernel | getKernel () |
Type safe kernel functor.
Definition at line 10054 of file opencl.hpp.
|
inline |
Enqueue kernel.
args | Launch parameters of the kernel. |
t0... | List of kernel arguments based on the template type of the functor. |
Definition at line 10097 of file opencl.hpp.
|
inline |
Enqueue kernel with support for error code.
args | Launch parameters of the kernel. |
t0... | List of kernel arguments based on the template type of the functor. |
error | Out parameter returning the error code from the execution. |
Definition at line 10121 of file opencl.hpp.