<< MPI_Get_library_version | Message Passing Interface | MPI_Get_version >> |
[name, namelen, info] = MPI_Get_processor_name() |
a string: name of the processor that is using MPI.
an integer value: Length (in characters) of the name.
an integer value: 0 MPI_SUCCESS, 16 MPI_ERR_OTHER.
This function get the name of the processor that is using MPI.
if ~MPI_Initialized()
MPI_Init();
end
[name, len, info] = MPI_Get_processor_name()
if MPI_Initialized()
MPI_Finalize();
end
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET