2004-01-25 04:51:49 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-15 23:31:47 +04:00
|
|
|
* $HEADER$
|
2004-01-25 04:51:49 +03:00
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2005-09-12 13:17:44 +04:00
|
|
|
#include "ompi/group/group.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/proc/proc.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 ) {
|
2004-09-09 20:01:44 +04:00
|
|
|
*result=MPI_IDENT;
|
2004-02-19 22:44:51 +03:00
|
|
|
} else if( similar ) {
|
|
|
|
*result=MPI_SIMILAR;
|
|
|
|
} else {
|
2004-09-09 20:01:44 +04:00
|
|
|
*result=MPI_UNEQUAL;
|
2004-02-19 22:44:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return return_value;
|
2004-01-25 04:51:49 +03:00
|
|
|
}
|