https://bugzilla.novell.com/show_bug.cgi?id=467161 User milisav.radmanic@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=467161#c7 --- Comment #7 from Milisav Radmanic <milisav.radmanic@novell.com> 2009-03-02 07:21:04 MST --- (In reply to comment #5)
I used openmpi on SLES instead of lam, with the same results
I disabled ldap and used 'plain' /etc/passwd, with the same results.
How do you use mpirun without lam? Can you please describe how to now reproduce the error? If I use mpicc to compile a hello world example like this: /* * Sample hello world MPI program for testing MPI. */ #include <stdio.h> #include <stdlib.h> #include <mpi.h> int main(int argc, char **argv) { int rank, size; /* Start up MPI */ MPI_Init(&argc, &argv); /* Get some info about MPI */ MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WORLD, &size); /* Print out the canonical "hello world" message */ printf("Hello, world! I am %d of %d\n", rank, size); /* All done */ MPI_Finalize(); return 0; } I can run it with mpirun without the error above. Thanks Milisav -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.