
The opal_gethostname() function provides a more robust mechanism to retrieve the hostname than gethostname(), which can return results that are not null-terminated, and which can vary in its behavior from system to system. opal_gethostname() just returns the value in opal_process_info.nodename; this is populated in opal_init_gethostname() inside opal_init.c. -Changed all gethostname calls in opal subtree to opal_gethostname -Changed all gethostname calls in orte subtree to opal_gethostname -Changed all gethostname calls in ompi subdir to opal_gethostname -Changed all gethostname calls in oshmem subdir to opal_gethostname -Changed opal_if.c in test subdir to use opal_gethostname -Changed opal_init.c to include opal_init_gethostname. This function returns an int and directly sets opal_process_info.nodename per jsquyres' modifications. Relates to open-mpi#6801 Signed-off-by: Charles Shereda <cpshereda@lanl.gov>
42 строки
872 B
C
42 строки
872 B
C
/* -*- C -*-
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* The most basic of MPI applications
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "opal/runtime/opal.h"
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include "mpi.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int rank, size;
|
|
const char *hostname;
|
|
|
|
MPI_Init(&argc, &argv);
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
|
|
MPI_Comm_size(MPI_COMM_WORLD, &size);
|
|
|
|
hostname = opal_gethostname();
|
|
printf("%s: I am %d of %d. pid=%d\n", hostname, rank, size, getpid());
|
|
|
|
if (rank%3 == 0) {
|
|
printf("%s: rank %d aborts\n", hostname, rank);
|
|
if (rank == 3) {
|
|
printf("%s: rank %d is going to sleep\n", hostname, rank);
|
|
sleep(2);
|
|
}
|
|
MPI_Abort(MPI_COMM_WORLD, 2);
|
|
printf("%s: sleeping. You should not see this\n", hostname);
|
|
sleep(100);
|
|
}
|
|
|
|
MPI_Finalize();
|
|
return 0;
|
|
}
|