File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
sycl/source/detail/scheduler Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 21
21
22
22
// / \defgroup sycl_graph DPC++ Execution Graph
23
23
// /
24
- // / DPC++ , unlike OpenCL, provides a programming model in which the user doesn't
24
+ // / SYCL , unlike OpenCL, provides a programming model in which the user doesn't
25
25
// / need to manage dependencies between kernels and memory explicitly. The DPC++
26
26
// / Runtime must ensure correct execution with respect to the order commands are
27
27
// / submitted.
60
60
// /
61
61
// / \code{.cpp}
62
62
// / {
63
- // / // Creating DPC++ CPU and GPU queues
63
+ // / // Creating SYCL CPU and GPU queues
64
64
// / cl::sycl::queue CPU_Queue = ...;
65
65
// / cl::sycl::queue GPU_Queue = ...;
66
66
// /
67
- // / // Creating 3 DPC++ buffers
67
+ // / // Creating 3 SYCL buffers
68
68
// / auto BufferA = ...; // Buffer is initialized with host memory.
69
69
// / auto BufferB = ...;
70
70
// / auto BufferC = ...;
@@ -369,9 +369,7 @@ class Scheduler {
369
369
// / Waits for the event.
370
370
// /
371
371
// / This operation is blocking. For eager execution mode this method invokes
372
- // / corresponding function of device API. In lazy execution mode the method
373
- // / may enqueue the command, associated with the event, and its dependency
374
- // / before calling device API.
372
+ // / corresponding function of device API.
375
373
// /
376
374
// / \param Event is a pointer to event to wait on.
377
375
void waitForEvent (EventImplPtr Event);
You can’t perform that action at this time.
0 commit comments