PI is configured incorrectly?
On Mon, Feb 20, 2012 at 4:53 AM, Ralph Castain wrote:
> If your program returns an error status (i.e., a non-zero exit status),
> then mpirun passes that along to you so any script you are using can know
> that something failed.
>
>
> On Feb 19, 2012, a
Hi,
In running this minimal program (test.c)
#include
#include
int main (int argc, char ** argv) {
MPI_Init(&argc, &argv);
MPI_Finalize();
exit(EXIT_FAILURE);
}
compiled and ran with the commands
mpicc test.c
mpirun -n 1 a.out
I get the output
---