Last updated 2 years ago
Was this helpful?
Return the version number of MPI library.
name = MPI_Get_library_version()
name - 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
1.0.0
initial version
Allan CORNET