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
Software stack:
Open MPI, PMIx, and UCX from Fedora 34 system packages.
$ rpm -qa openmpi pmix ucx openmpi-4.0.5-1.fc33.x86_64 pmix-3.2.3-1.fc33.x86_64 ucx-1.10.1-1.fc33.x86_64
OSSS-UCX Configuration:
./configure --prefix=/home/devel/shmem/osss --with-ucx --with-pmix --enable-debug --enable-logging
Reproducer:
#include <assert.h> #include <shmem.h> int main() { shmem_ctx_t ctx = SHMEM_CTX_INVALID; shmem_init(); shmem_ctx_create(0, &ctx); assert(ctx != SHMEM_CTX_INVALID); shmem_ctx_destroy(ctx); shmem_finalize(); }
$ oshcc test.c $ oshrun -n 1 ./a.out [1621928778.081496] [localhost:153709:0] mpool.c:43 UCX WARN object 0xea0dc0 was not returned to mpool ucp_requests
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Software stack:
Open MPI, PMIx, and UCX from Fedora 34 system packages.
OSSS-UCX Configuration:
Reproducer:
The text was updated successfully, but these errors were encountered: