queue
MISSING
|
(1) |
|
(2) |
|
(3) |
|
(4) |
|
(5) |
|
(6) |
|
(7) |
|
(8) |
|
(9) |
|
(10) |
|
(11) |
|
(12) |
-
Creates a queue using a specific implementation object.
Parameters:-
cl::sycl::dqueue_shptr
impl
-
-
Constructs a queue using a default device selector.
Parameters:-
const cl::sycl::property_list &
propList
: List of queue properties
-
-
Completely moves the contents of a queue to that of another queue.
Parameters:-
cl::sycl::queue &&
rhs
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-