2004-01-25 01:51:49 +00:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-01-25 01:51:49 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#include "group/group.h"
|
2004-03-22 21:42:12 +00:00
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-25 01:51:49 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-25 01:51:49 +00:00
|
|
|
#pragma weak MPI_Group_translate_ranks = PMPI_Group_translate_ranks
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 18:50:43 +00:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-03-02 00:14:13 +00:00
|
|
|
int MPI_Group_translate_ranks(MPI_Group group1, int n_ranks, int *ranks1,
|
2004-01-25 01:51:49 +00:00
|
|
|
MPI_Group group2, int *ranks2) {
|
2004-03-02 00:14:13 +00:00
|
|
|
|
2004-03-15 02:25:49 +00:00
|
|
|
int rank, proc, proc2;
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_proc_t *proc1_pointer, *proc2_pointer;
|
|
|
|
ompi_group_t *group1_pointer, *group2_pointer;
|
2004-03-02 00:14:13 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
group1_pointer=(ompi_group_t *)group1;
|
|
|
|
group2_pointer=(ompi_group_t *)group2;
|
2004-03-02 00:14:13 +00:00
|
|
|
|
2004-03-15 02:25:49 +00:00
|
|
|
/* check for errors */
|
|
|
|
if( MPI_PARAM_CHECK ) {
|
2004-03-22 21:42:12 +00:00
|
|
|
if ((MPI_GROUP_NULL == group1) || (MPI_GROUP_NULL == group2) ||
|
|
|
|
(NULL == group1) || (NULL == group2) ) {
|
2004-06-07 15:33:53 +00:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP,
|
2004-03-22 21:42:12 +00:00
|
|
|
"MPI_Group_translate_ranks");
|
2004-03-15 22:14:08 +00:00
|
|
|
}
|
2004-06-15 00:06:33 +00:00
|
|
|
if( 0 >= n_ranks ){
|
2004-06-07 15:33:53 +00:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP,
|
2004-03-22 21:42:12 +00:00
|
|
|
"MPI_Group_translate_ranks - II ");
|
2004-03-16 01:18:47 +00:00
|
|
|
}
|
|
|
|
if( (NULL == ranks1) || (NULL == ranks2 ) ) {
|
2004-06-07 15:33:53 +00:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP,
|
2004-03-22 21:42:12 +00:00
|
|
|
"MPI_Group_translate_ranks - III ");
|
2004-03-02 00:14:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* loop over all ranks */
|
|
|
|
for (proc = 0; proc < n_ranks; proc++) {
|
|
|
|
rank=ranks1[proc];
|
|
|
|
proc1_pointer=group1_pointer->grp_proc_pointers[rank];
|
|
|
|
/* initialize to no "match" */
|
|
|
|
ranks2[proc] = MPI_UNDEFINED;
|
|
|
|
for (proc2 = 0; proc2 < group2_pointer->grp_proc_count; proc2++)
|
|
|
|
{
|
|
|
|
proc2_pointer=group2_pointer->grp_proc_pointers[proc2];
|
|
|
|
if ( proc1_pointer == proc2_pointer) {
|
|
|
|
ranks2[proc] = proc2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} /* end proc2 loop */
|
|
|
|
} /* end proc loop */
|
|
|
|
|
2004-01-25 01:51:49 +00:00
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|