Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

MPI_Get_library_version

Return the version number of MPI library.

Syntax

  • name = MPI_Get_library_version()

Output argument

  • name - a string: Version of MPI.

Description

This function returns the version number of MPI library.

See also

MPI_Get_version.

Example

if ~MPI_Initialized()
  MPI_Init();
end
name = MPI_Get_library_version()
if MPI_Initialized()
  MPI_Finalize();
end

History

VersionDescription
1.0.0initial version

Author

Allan CORNET