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
Use release/acquire ordering for GatherND error flag
Address review feedback: with relaxed ordering on separate atomics,
the acquire of has_invalid_index could observe true while err_index
is still at its default. Store err_index first (relaxed), then
publish has_invalid_index with release. Load the flag with acquire
to guarantee err_index visibility.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments