This MUST be called to set up MPI before any other MPI routines may be called
|
For C: int MPI_Init(int *argc, char **argv[])
-
argc and argv[] are conventional C main routine arguments
-
As usual MPI_Init returns an error handle
|
For Fortran: call MPI_INIT(mpierr)
-
nonzero (more pedantically values not equal to MPI_SUCCESS) values of mpierr represent errors
|