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
If `stream` keyword argument has type `dpctl.SyclQueue`, then submit
a barrier into `self.sycl_queue`, and than submit another barrier into
stream with dependency on the event returned by submission
of the barrier into `self.sycl_queue`:
```python
ev = self.sycl_queue.submit_barrier()
stream.submit_barrier(dependent_events=[ev])
```
All other types of stream are ignored, in particular integer
values of stream.
0 commit comments