<< MPI_Comm_delete | Message Passing Interface | MPI_Comm_object >> |
MPI_Comm_get_name(comm) |
a handle: a MPI_Comm object.
MPI_Comm_get_name(comm) returns the print name from the communicator.
CLI required
if ~MPI_Initialized()
MPI_Init();
end
comm = MPI_Comm_object();
MPI_Comm_get_name(comm)
delete(comm)
if MPI_Initialized()
MPI_Finalize();
end
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET