diff options
Diffstat (limited to 'src/api/api_command.cpp')
-rw-r--r-- | src/api/api_command.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/api/api_command.cpp b/src/api/api_command.cpp new file mode 100644 index 0000000..4f1c417 --- /dev/null +++ b/src/api/api_command.cpp @@ -0,0 +1,42 @@ +#include <OpenCL/cl.h> + +// Command Queue APIs +cl_command_queue +clCreateCommandQueue(cl_context context, + cl_device_id device, + cl_command_queue_properties properties, + cl_int * errcode_ret) +{ + return 0; +} + +cl_int +clRetainCommandQueue(cl_command_queue command_queue) +{ + return 0; +} + +cl_int +clReleaseCommandQueue(cl_command_queue command_queue) +{ + return 0; +} + +cl_int +clGetCommandQueueInfo(cl_command_queue command_queue, + cl_command_queue_info param_name, + size_t param_value_size, + void * param_value, + size_t * param_value_size_ret) +{ + return 0; +} + +cl_int +clSetCommandQueueProperty(cl_command_queue command_queue, + cl_command_queue_properties properties, + cl_bool enable, + cl_command_queue_properties * old_properties) +{ + return 0; +} |