Skip to content

Commit 8bf29c7

Browse files
author
Alexander Batashev
committed
Fix more comments
Signed-off-by: Alexander Batashev <[email protected]>
1 parent 93c08b0 commit 8bf29c7

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

sycl/source/detail/scheduler/scheduler.hpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/// \defgroup sycl_graph DPC++ Execution Graph
2323
///
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
2525
/// need to manage dependencies between kernels and memory explicitly. The DPC++
2626
/// Runtime must ensure correct execution with respect to the order commands are
2727
/// submitted.
@@ -60,11 +60,11 @@
6060
///
6161
/// \code{.cpp}
6262
/// {
63-
/// // Creating DPC++ CPU and GPU queues
63+
/// // Creating SYCL CPU and GPU queues
6464
/// cl::sycl::queue CPU_Queue = ...;
6565
/// cl::sycl::queue GPU_Queue = ...;
6666
///
67-
/// // Creating 3 DPC++ buffers
67+
/// // Creating 3 SYCL buffers
6868
/// auto BufferA = ...; // Buffer is initialized with host memory.
6969
/// auto BufferB = ...;
7070
/// auto BufferC = ...;
@@ -369,9 +369,7 @@ class Scheduler {
369369
/// Waits for the event.
370370
///
371371
/// 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.
375373
///
376374
/// \param Event is a pointer to event to wait on.
377375
void waitForEvent(EventImplPtr Event);

0 commit comments

Comments
 (0)