MPI_Comm_get_name(comm)
| Paramètre | Description |
|---|---|
| comm | handle : objet MPI_Comm. |
MPI_Comm_get_name(comm) renvoie le nom imprimable du communicateur.
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 | version initiale |