Go to the source code of this file.
|
function | name (in vendor) |
| Return the MPI library name as used in naming the ParaMonte MATLAB shared library directories.
More...
|
|
◆ name()
function name |
( |
in |
vendor | ) |
|
Return the MPI library name as used in naming the ParaMonte MATLAB shared library directories.
- Parameters
-
[in] | vendor | : The input scalar MATLAB string, containing the MPI library vendor supported by the ParaMonte library.
Possible values are:
-
"Intel" , representing the Intel MPI library.
-
"MPICH" , representing the MPICH MPI library.
-
"OpenMPI" , representing the OpenMPI library.
Note that all values are case-insensitive.
|
- Returns
str
: The output scalar MATLAB string containing the MPI library name corresponding to the input MPI vendor
.
If the input vendor
is not supported, the default string "mpi"
is returned as the value of str
.
Possible calling interfaces ⛓
function vendor(in name)
Return the MPI library vendor name from the input MPI name based on the internal ParaMonte shared lib...
- See also
- pm.lib.mpi.name()
pm.lib.mpi.vendor()
pm.sys.path.mpiexec.vendor()
Example usage ⛓
1cd(fileparts(mfilename(
'fullpath'))); % Change working directory to source code directory.
2addpath(
'../../../../'); % Add the ParaMonte library
root directory to the search path.
4disp(
'pm.lib.mpi.name("impi")')
5disp( pm.lib.mpi.name(
"impi") )
20disp('pm.
lib.mpi.
name("openmpi")')
21disp( pm.
lib.mpi.
name("openmpi") )
24disp('pm.
lib.mpi.
name("open-mpi")')
25disp( pm.
lib.mpi.
name("open-mpi") )
32disp('pm.
lib.mpi.
name("unknown")')
33disp( pm.
lib.mpi.
name("unknown") )
function name(in vendor)
Return the MPI library name as used in naming the ParaMonte MATLAB shared library directories.
function lib()
Return a scalar MATLAB string containing the path to the lib directory of the ParaMonte library packa...
function ompi()
Return the MPI image count and the current image ID (e.g., MPI rank + 1) if the application has been ...
function root()
Return a scalar MATLAB string containing the root directory of the ParaMonte library package.
Example output ⛓
3pm.lib.mpi.name(
"INTEL")
5pm.lib.mpi.name(
"intel")
9pm.lib.mpi.name(
"openmpi")
11pm.lib.mpi.name(
"open-mpi")
13pm.lib.mpi.name(
"mpich")
15pm.lib.mpi.name(
"unknown")
function impi()
Return the MPI image count and the current image ID (e.g., MPI rank + 1) if the application has been ...
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
-
If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
-
If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
- Copyright
- Computational Data Science Lab
- Author:
- Joshua Alexander Osborne, May 21 2024, 7:20 PM, University of Texas at Arlington
Fatemeh Bagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.
Amir Shahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin