Last updated 2 years ago
Was this helpful?
Return the version number of MPI.
[major, minor] = MPI_Get_version()
major - an integer value.
minor - an integer value.
, .
if ~MPI_Initialized() MPI_Init(); end [major, minor] = MPI_Get_version() if MPI_Initialized() MPI_Finalize(); end
1.0.0
initial version
Allan CORNET