We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support queue_t arguments.
queue_t
A custom queue can be created as follow.
cl_queue_properties qprop[] = {CL_QUEUE_SIZE, 16*1024*1024, CL_QUEUE_PROPERTIES, (cl_command_queue_properties)CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE | CL_QUEUE_ON_DEVICE | CL_QUEUE_ON_DEVICE_DEFAULT, 0}; cl_command_queue my_device_q = clCreateCommandQueueWithProperties(CLU_CONTEXT, cluGetDevice(CL_DEVICE_TYPE_GPU), qprop, &status);
See https://software.intel.com/en-us/articles/sierpinski-carpet-in-opencl-20
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support
queue_t
arguments.A custom queue can be created as follow.
See https://software.intel.com/en-us/articles/sierpinski-carpet-in-opencl-20
The text was updated successfully, but these errors were encountered: