You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SYCL][Graph] Fix queue recording barrier to different graphs
Recording barrier submissions to from the same queue to a different
graph current produces the following error with added regression test:
```
Terminate called after throwing an instance of 'sycl::_V1::exception'
what(): Graph nodes cannot depend on events from another graph.
```
This is because the queue implementation doesn't clear all the
state around what the last queue submission was between graph
recordings.
Fixed by clearing all members of the barrier book keeping struct
in the queue.
0 commit comments