2004-01-25 04:51:49 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#include "group/group.h"
|
2004-03-23 00:42:12 +03:00
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-25 04:51:49 +03:00
|
|
|
#pragma weak MPI_Group_compare = PMPI_Group_compare
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 22:50:43 +04:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-07-30 06:58:53 +04:00
|
|
|
static const char FUNC_NAME[] = "MPI_Group_compare";
|
2004-06-23 00:21:35 +04:00
|
|
|
|
|
|
|
|
2004-01-25 04:51:49 +03:00
|
|
|
int MPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) {
|
2004-02-19 22:44:51 +03:00
|
|
|
|
|
|
|
/* local variables */
|
|
|
|
int return_value, proc1, proc2, similar, identical, match ;
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_group_t *group1_pointer, *group2_pointer;
|
|
|
|
ompi_proc_t *proc1_pointer, *proc2_pointer;
|
2004-02-19 22:44:51 +03:00
|
|
|
|
|
|
|
/* initialization */
|
|
|
|
return_value=MPI_SUCCESS;
|
|
|
|
|
2004-03-16 01:14:08 +03:00
|
|
|
/* check for errors */
|
|
|
|
if( MPI_PARAM_CHECK ) {
|
2004-06-23 00:21:35 +04:00
|
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
2004-06-18 23:02:52 +04:00
|
|
|
|
2004-03-23 00:42:12 +03:00
|
|
|
if( ( MPI_GROUP_NULL == group1 ) || ( MPI_GROUP_NULL == group2 ) ||
|
|
|
|
(NULL == group1) || (NULL==group2) ){
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP,
|
2004-06-23 00:21:35 +04:00
|
|
|
FUNC_NAME);
|
2004-03-16 01:14:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-19 22:44:51 +03:00
|
|
|
/* check for same groups */
|
|
|
|
if( group1 == group2 ) {
|
|
|
|
*result=MPI_IDENT;
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check to see if either is MPI_GROUP_NULL or MPI_GROUP_EMPTY */
|
2004-03-16 01:14:08 +03:00
|
|
|
if( ( MPI_GROUP_EMPTY == group1 ) || ( MPI_GROUP_EMPTY == group2 ) ) {
|
2004-02-19 22:44:51 +03:00
|
|
|
*result=MPI_UNEQUAL;
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get group pointers */
|
2004-06-07 19:33:53 +04:00
|
|
|
group1_pointer = (ompi_group_t *)group1;
|
|
|
|
group2_pointer = (ompi_group_t *)group2;
|
2004-02-19 22:44:51 +03:00
|
|
|
|
|
|
|
/* compare sizes */
|
|
|
|
if( group1_pointer->grp_proc_count != group2_pointer->grp_proc_count ) {
|
|
|
|
/* if not same size - return */
|
|
|
|
*result=MPI_UNEQUAL;
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for similarity */
|
|
|
|
/* loop over group1 processes */
|
|
|
|
similar=1;
|
|
|
|
identical=1;
|
|
|
|
for(proc1=0 ; proc1 < group1_pointer->grp_proc_count ; proc1++ ) {
|
|
|
|
proc1_pointer=group1_pointer->grp_proc_pointers[proc1];
|
|
|
|
/* loop over group2 processes to find "match" */
|
|
|
|
match=-1;
|
|
|
|
for(proc2=0 ; proc2 < group2_pointer->grp_proc_count ; proc2++ ) {
|
2004-06-15 04:25:36 +04:00
|
|
|
proc2_pointer=group2_pointer->grp_proc_pointers[proc2];
|
2004-02-19 22:44:51 +03:00
|
|
|
if( proc1_pointer == proc2_pointer ) {
|
|
|
|
if(proc1 != proc2 ) {
|
|
|
|
identical=0;
|
|
|
|
}
|
|
|
|
match=proc2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} /* end proc2 loop */
|
|
|
|
if( match== -1 ) {
|
|
|
|
similar=false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} /* end proc1 loop */
|
|
|
|
|
|
|
|
/* set comparison result */
|
|
|
|
if( identical ) {
|
|
|
|
*result=MPI_UNEQUAL;
|
|
|
|
} else if( similar ) {
|
|
|
|
*result=MPI_SIMILAR;
|
|
|
|
} else {
|
|
|
|
*result=MPI_IDENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return return_value;
|
2004-01-25 04:51:49 +03:00
|
|
|
}
|