We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6533536 commit 30bb03fCopy full SHA for 30bb03f
dpctl/_sycl_event.pyx
@@ -203,7 +203,7 @@ cdef class SyclEventRaw(_SyclEventRaw):
203
""" Waits for a given event or a sequence of events.
204
"""
205
if (isinstance(event, collections.abc.Sequence) and
206
- all( (isinstance(el, SyclEventRaw) for el in event) )):
+ all((isinstance(el, SyclEventRaw) for el in event))):
207
for e in event:
208
SyclEventRaw._wait(e)
209
elif isinstance(event, SyclEventRaw):
0 commit comments