syclreference.com
  1. SYCL
  2. | API Reference
  3. | queue
  4. | queue

queue

MISSING


explicit queue(cl::sycl::dqueue_shptr impl)
(1)
explicit queue(const cl::sycl::property_list & propList)
(2)
queue(cl::sycl::queue && rhs)
(3)
queue(cl_command_queue clqueue, const cl::sycl::context & s_context, const cl::sycl::async_handler & asyncHandler)
(4)
queue(const cl::sycl::async_handler & asyncHandler, const cl::sycl::property_list & propList)
(5)
queue(const cl::sycl::context & syclContext, const cl::sycl::device_selector & selector, const cl::sycl::async_handler & asyncHandler, const cl::sycl::property_list & propList)
(6)
queue(const cl::sycl::context & syclContext, const cl::sycl::device_selector & selector, const cl::sycl::property_list & propList)
(7)
queue(const cl::sycl::device & dev, const cl::sycl::async_handler & asyncHandler, const cl::sycl::property_list & propList)
(8)
queue(const cl::sycl::device & dev, const cl::sycl::property_list & propList)
(9)
queue(const cl::sycl::device_selector & deviceSelector, const cl::sycl::async_handler & asyncHandler, const cl::sycl::property_list & propList)
(10)
queue(const cl::sycl::device_selector & deviceSelector, const cl::sycl::property_list & propList)
(11)
queue(const cl::sycl::queue & rhs)
(12)
  1. Creates a queue using a specific implementation object.
    Parameters:
    • cl::sycl::dqueue_shptr impl
  2. Constructs a queue using a default device selector.
    Parameters:
    • const cl::sycl::property_list & propList : List of queue properties
  3. Completely moves the contents of a queue to that of another queue.
    Parameters:
    • cl::sycl::queue && rhs
  4. Construct a queue object from a given OpenCL object
    Parameters:
    • cl_command_queue clqueue
    • const cl::sycl::context & s_context : a valid OpenCL context
    • const cl::sycl::async_handler & asyncHandler : User defined
  5. Constructs a queue using a default device selector.
    Parameters:
    • const cl::sycl::async_handler & asyncHandler : User defined
    • const cl::sycl::property_list & propList : List of queue properties
  6. Constructs a queue using a user defined device selector against a specific context. The device selector to get the device to construct the queue.
    Parameters:
    • const cl::sycl::context & syclContext : Context in which the queue will be created.
    • const cl::sycl::device_selector & selector : Used to get a device from the context
    • const cl::sycl::async_handler & asyncHandler
    • const cl::sycl::property_list & propList : List of queue properties
  7. Constructs a queue using a user defined device selector against a specific context. The device selector to get the device to construct the queue.
    Parameters:
    • const cl::sycl::context & syclContext : Context in which the queue will be created.
    • const cl::sycl::device_selector & selector : Used to get a device from the context
    • const cl::sycl::property_list & propList : List of queue properties
  8. Construct a queue from a given device, creating an implicit context in the process.
    Parameters:
    • const cl::sycl::device & dev : The device to use to create the queue
    • const cl::sycl::async_handler & asyncHandler : User defined
    • const cl::sycl::property_list & propList : List of queue properties
  9. Construct a queue from a given device, creating an implicit context in the process.
    Parameters:
    • const cl::sycl::device & dev : The device to use to create the queue
    • const cl::sycl::property_list & propList : List of queue properties
  10. Constructs a queue using a user defined device selector. The device selector constructor to get the device to construct the queue.
    Parameters:
    • const cl::sycl::device_selector & deviceSelector : User defined
    • const cl::sycl::async_handler & asyncHandler : User defined
    • const cl::sycl::property_list & propList : List of queue properties
  11. Constructs a queue using a user defined device selector. The device selector constructor to get the device to construct the queue.
    Parameters:
    • const cl::sycl::device_selector & deviceSelector : User defined
    • const cl::sycl::property_list & propList : List of queue properties
  12. Construct a queue object by copying the contents of a given queue object.
    Parameters:
    • const cl::sycl::queue & rhs : a queue to be copied over to the returned object

syclreference.com — SYCL Reference Pages

Last updated: 2019-01-24 00:24:52 +0000