Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiomestre committed May 6, 2024
1 parent a8e5782 commit cbfde2c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions sycl/doc/extensions/experimental/sycl_ext_oneapi_graph.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -669,10 +669,10 @@ queue one or more times with reduced overhead.
A `command_graph` can be submitted to both in-order and out-of-order queues. Any
dependencies between the graph and other command-groups submitted to the same
queue will be respected. However, the in-order and out-of-order properties of the
queue have no effect on how the graph itself is executed (e.g. the graph nodes
might execute out-of-order even when using an in-order queue). For further
information about the interaction between queues and graphs
<<Queue Class Modifications, see the section on Queue Class Modifications>>
queue have no effect on how the nodes within the graph are executed (e.g. the graph
nodes without dependency edges may execute out-of-order even when using an in-order
queue). For further information about how the properties of a queue affect graphs
<<Queue Properties, see the section on Queue Properties>>

==== Graph State

Expand Down Expand Up @@ -884,7 +884,9 @@ Parameters:

* `syclQueue` - Queue which provides the SYCL device and context for the graph,
which are immutable characteristics of the graph. All other properties of the
queue are ignored for the purposes of graph creation.
queue are ignored for the purposes of graph creation. See the
<<Queue Properties, Queue Properties>> section for more general information
about how queue properties interact with command_graph objects.

* `propList` - Optional parameter for passing properties. Valid `command_graph`
constructor properties are listed in Section <<graph-properties, Graph Properties>>.
Expand Down

0 comments on commit cbfde2c

Please sign in to comment.