Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

15 changes: 12 additions & 3 deletions sycl/doc/extensions/proposed/sycl_ext_oneapi_graph.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,11 @@ argument being `graph_state::modifiable` to reduce code verbosity on
construction.

.Graph State Diagram
image::images/sycl_ext_oneapi_graph/command_graph-state.svg[]
[source, mermaid]
....
graph LR
Modifiable -->|Finalize| Executable
....

==== Executable Graph Update

Expand Down Expand Up @@ -721,8 +725,13 @@ are recorded to a graph object as new nodes for each submission. After recording
has finished and the queue returns to the executing state, the recorded commands are
not then executed, they are transparent to any following queue operations.

.Queue State
image::images/sycl_ext_oneapi_graph/queue-state.svg[]
.Queue State Diagram
[source, mermaid]
....
graph LR
Executing -->|Begin Recording| Recording
Recording -->|End Recording| Executing
....

The state of a queue can be queried with `queue::get_info` using template
parameter `info::queue::state`. The following entry is added to the
Expand Down