1
1

Ensure all procs set locality for all remote procs in the multi-way intercomm_create problem

Refs trac:4411

This commit was SVN r31118.

The following Trac tickets were found above:
  Ticket 4411 --> https://svn.open-mpi.org/trac/ompi/ticket/4411
Этот коммит содержится в:
Ralph Castain 2014-03-18 16:55:15 +00:00
родитель 7933de4928
Коммит 3323c47ab4

Просмотреть файл

@ -1547,6 +1547,11 @@ ompi_proc_t **ompi_comm_get_rprocs ( ompi_communicator_t *local_comm,
goto err_exit;
}
/* set the locality of the remote procs */
for (i=0; i < rsize; i++) {
ompi_proc_set_locality(rprocs[i]);
}
err_exit:
/* rprocs isn't freed unless we have an error,
since it is used in the communicator */