<< MPI_Finalize | Message Passing Interface | MPI_Get_processor_name >> |
name = MPI_Get_library_version() |
a string: Version of MPI.
This function returns the version number of MPI library.
if ~MPI_Initialized()
MPI_Init();
end
name = MPI_Get_library_version()
if MPI_Initialized()
MPI_Finalize();
end
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET