/* * Copyright (c) 2004-2005 The Trustees of Indiana University. * All rights reserved. * Copyright (c) 2004-2005 The Trustees of the University of Tennessee. * All rights reserved. * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, * University of Stuttgart. All rights reserved. * Copyright (c) 2004-2005 The Regents of the University of California. * All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #include "ompi_config.h" #include #include "mpi.h" #include "mpi/c/bindings.h" #include "group/group.h" #include "errhandler/errhandler.h" #include "communicator/communicator.h" #if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES #pragma weak MPI_Group_range_excl = PMPI_Group_range_excl #endif #if OMPI_PROFILING_DEFINES #include "mpi/c/profile/defines.h" #endif static const char FUNC_NAME[] = "MPI_Group_range_excl"; int MPI_Group_range_excl(MPI_Group group, int n_triplets, int ranges[][3], MPI_Group *new_group) { /* local variables */ int new_group_size, proc, first_rank, last_rank; int stride, triplet, index, *elements_int_list, my_group_rank; ompi_group_t *group_pointer, *new_group_pointer; ompi_proc_t *my_proc_pointer; group_pointer=(ompi_group_t *)group; /* can't act on NULL group */ if( MPI_PARAM_CHECK ) { OMPI_ERR_INIT_FINALIZE(FUNC_NAME); if ( (MPI_GROUP_NULL == group) || (NULL == group) ) { return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP, FUNC_NAME); } } /* * pull out elements */ elements_int_list = (int *) malloc(sizeof(int) * group_pointer->grp_proc_count); if (NULL == elements_int_list) { return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER, FUNC_NAME); } for (proc = 0; proc < group_pointer->grp_proc_count; proc++) { elements_int_list[proc] = -1; } /* loop over triplet */ new_group_size = 0; for (triplet = 0; triplet < n_triplets; triplet++) { first_rank = ranges[triplet][0]; last_rank = ranges[triplet][1]; stride = ranges[triplet][2]; /* check for error conditions */ if ((0 > first_rank) || (first_rank > group_pointer->grp_proc_count)) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } if ((0 > last_rank) || (last_rank > group_pointer->grp_proc_count)) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } if (stride == 0) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } if (first_rank < last_rank) { if (stride < 0) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } /* positive stride */ for (index = first_rank; index <= last_rank; index += stride) { /* make sure rank has not already been selected */ if (elements_int_list[index] != -1) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } elements_int_list[index] = new_group_size; new_group_size++; } } else if (first_rank > last_rank) { if (stride > 0) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } /* negative stride */ for (index = first_rank; index >= last_rank; index += stride) { /* make sure rank has not already been selected */ if (elements_int_list[index] != -1) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } elements_int_list[index] = new_group_size; new_group_size++; } } else { /* first_rank == last_rank */ index = first_rank; if (elements_int_list[index] != -1 || stride != 1) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME); } elements_int_list[index] = new_group_size; new_group_size++; } } /* end triplet loop */ /* we have counted the procs to exclude from the list */ new_group_size=group_pointer->grp_proc_count-new_group_size; if ( 0 == new_group_size ) { *new_group = MPI_GROUP_EMPTY; OBJ_RETAIN(MPI_GROUP_EMPTY); return MPI_SUCCESS; } /* allocate a new ompi_group_t structure */ new_group_pointer=ompi_group_allocate(new_group_size); if( NULL == new_group_pointer ) { free(elements_int_list); return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP, FUNC_NAME); } /* fill in group list */ index=0; for (proc = 0; proc < group_pointer->grp_proc_count; proc++) { /* if value == -1, include in the list */ if (0 > elements_int_list[proc] ) { new_group_pointer->grp_proc_pointers[index] = group_pointer->grp_proc_pointers[proc]; index++; } } /* end of proc loop */ /* increment proc reference counters */ ompi_group_increment_proc_count(new_group_pointer); free(elements_int_list); /* find my rank */ my_group_rank=group_pointer->grp_my_rank; my_proc_pointer=group_pointer->grp_proc_pointers[my_group_rank]; ompi_set_group_rank(new_group_pointer,my_proc_pointer); *new_group = (MPI_Group)new_group_pointer; return MPI_SUCCESS; }