Control: reassign -1 openmpi
Control: affects -1 gtg-trace

Hello,

Lucas Nussbaum, le sam. 20 avril 2024 14:52:03 +0200, a ecrit:
> > --------------------------------------------------------------------------
> > Sorry!  You were supposed to get help about:
> >     pmix_init:startup:internal-failure
> > But I couldn't open the help file:
> >     /usr/share/pmix/help-pmix-runtime.txt: No such file or directory.  
> > Sorry!
> > --------------------------------------------------------------------------
> > [ip-10-84-234-251:1132190] PMIX ERROR: NOT-FOUND in file 
> > ../../../../../../../../opal/mca/pmix/pmix3x/pmix/src/server/pmix_server.c 
> > at line 237
> > running testEvent_parall 1
> > --------------------------------------------------------------------------

This happens on i386 too, but also with the following trivial testcase
on armhf and i386:

$ cat test.c
#include <mpi.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
        int size, rank;
        MPI_Init(&argc, &argv);
        MPI_Comm_size(MPI_COMM_WORLD, &size);
        MPI_Comm_rank(MPI_COMM_WORLD, &rank);
        printf("%d/%d\n", rank, size);
        MPI_Finalize();
        return 0;
}
$ mpicc test.c -o test
$ mpirun -np 2 ./test
--------------------------------------------------------------------------
Sorry!  You were supposed to get help about:
    pmix_init:startup:internal-failure
But I couldn't open the help file:
    /usr/share/pmix/help-pmix-runtime.txt: No such file or directory.  Sorry!
--------------------------------------------------------------------------
[abel:25256] PMIX ERROR: NOT-FOUND in file 
../../../../../../../../opal/mca/pmix/pmix3x/pmix/src/server/pmix_server.c at 
line 237

Thus reassigning to openmpi. It seems that even if pmix is not built on
32bit archs any more, openmpi is still enabling pmix support, perhaps
that needs to be disabled?

Samuel

Reply via email to