We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cannot make sense of the implementation of shmem_wait_until_all[_vector](). https://github.com/openshmem-org/osss-ucx/blob/main/src/shmemc/ucx/waituntil.c#L221
shmem_wait_until_all[_vector]()
nelems > 0
status
ivars
n == nelems
The text was updated successfully, but these errors were encountered:
There is an erratum to OpenSHMEM 1.5 for this -- https://github.com/openshmem-org/specification/wiki/OpenSHMEM-1.5-Errata
Sorry, something went wrong.
No branches or pull requests
I cannot make sense of the implementation of
shmem_wait_until_all[_vector]()
.https://github.com/openshmem-org/osss-ucx/blob/main/src/shmemc/ucx/waituntil.c#L221
nelems > 0
and all entries ofstatus
are nonzero, then the routine it will loop forever and deadlock.ivars
entries passing the test, eventually you will getn == nelems
and the busy loop finishes.The text was updated successfully, but these errors were encountered: