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][PI][CUDA][HIP] Fix bugs that can cause events not to be waited on (#8374)
Fixes two bug in CUDA PI and HIP PI that can cause waiting for events to
do nothing:
- The first one is an off-by-one error when checking if an event needs
to be waited on
- The second one is `last_sync_compute_streams_` /
`last_sync_transfer_streams_` to a new value before checking the streams
which can read these variables, expecting the old values.
Both of these are synchronization related and therefore hard to test
for.
0 commit comments