[name, namelen, info] = MPI_Get_processor_name()
| Paramètre | Description |
|---|---|
| name | chaîne : nom du processeur utilisant MPI. |
| namelen | entier : longueur (en caractères) du nom. |
| info | entier : 0 MPI_SUCCESS, 16 MPI_ERR_OTHER. |
Cette fonction récupère le nom du processeur utilisant 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 | version initiale |