-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
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_64OSSS-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_requestsMetadata
Metadata
Assignees
Labels
No labels