Library information
Constants
MPI.MPI_VERSION
— ConstantMPI_VERSION :: VersionNumber
The supported version of the MPI standard.
External links
MPI.MPI_LIBRARY
— ConstantMPI.MPI_LIBRARY_VERSION
— ConstantMPI_LIBRARY_VERSION :: VersionNumber
The version of the MPI library
MPI.MPI_LIBRARY_VERSION_STRING
— ConstantMPI_LIBRARY_VERSION_STRING :: String
The full version string provided by the library
External links
Enums
MPI.MPIImpl
— TypeMPIImpl
An enum corresponding to known MPI implementations
UnknownMPI
: unable to determine MPI implementationMPICH
: MPICHOpenMPI
: Open MPIMicrosoftMPI
: Microsoft MPIIntelMPI
: Intel MPISpectrimMPI
: IBM Spectrum MPIMVAPICH
: MVAPICHCrayMPICH
: Part of the Cray Message Passing Toolkit (MPT)
See also
Functions
MPI.has_cuda
— FunctionMPI.has_cuda()
Check if the MPI implementation is known to have CUDA support. Currently only Open MPI provides a mechanism to check, so it will return false
with other implementations (unless overriden).
This can be overriden by setting the JULIA_MPI_HAS_CUDA
environment variable to true
or false
.
MPI.identify_implementation
— Functionimpl, version = identify_implementation()
Attempt to identify the MPI implementation based on MPI_LIBRARY_VERSION_STRING
. Returns a triple of values:
impl
: a value of typeMPIImpl
version
: aVersionNumber
of the library, ornothing
if it cannot be determined.
This function is only intended for internal use. Users should use MPI_LIBRARY
, MPI_LIBRARY_VERSION
.