Neutral Binding
MPI_GET_PROCESSOR_NAME( name, resultlen ) [ OUT name] A unique specifier for the actual (as opposed to virtual) node. [ OUT resultlen] Length (in printable characters) of the result returned in name
C Binding
int MPI_Get_processor_name(char *name, int *resultlen)
FORTRAN Binding
MPI_GET_PROCESSOR_NAME(NAME, RESULTLEN, IERROR) CHARACTER*(*) NAME INTEGER RESULTLEN, IERROR
C++ Binding (in the MPI:: namespace)
void Get_processor_name(char* name, int& resultlen)
|
|