| << MPI_Get_version | Message Passing Interface | MPI_Initialized >> |
| MPI_Init() |
| r = MPI_Init() |
a logical.
Initialize the MPI execution environment.
MPI process are launched in CLI mode (no gui, no plot).
MPI_Initialized, MPI_Finalize.
if ~MPI_Initialized()
MPI_Init();
end
if MPI_Initialized()
MPI_Finalize();
end
| Version | Description |
|---|---|
| 1.0.0 | initial version |
Allan CORNET