2004-01-25 04:51:49 +03:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* 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.
|
2006-03-15 00:01:46 +03:00
|
|
|
* Copyright (c) 2006 University of Houston. All rights reserved.
|
2012-01-20 06:06:21 +04:00
|
|
|
* Copyright (c) 2006-2012 Cisco Systems, Inc. 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>
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2009-04-29 05:32:14 +04:00
|
|
|
#include "ompi/runtime/params.h"
|
2005-09-12 13:17:44 +04:00
|
|
|
#include "ompi/group/group.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-25 04:51:49 +03:00
|
|
|
#pragma weak MPI_Group_range_incl = PMPI_Group_range_incl
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/profile/defines.h"
|
2004-04-20 22:50:43 +04:00
|
|
|
#endif
|
|
|
|
|
2004-07-30 06:58:53 +04:00
|
|
|
static const char FUNC_NAME[] = "MPI_Group_range_incl";
|
2004-06-23 00:21:35 +04:00
|
|
|
|
|
|
|
|
2004-03-02 03:14:13 +03:00
|
|
|
int MPI_Group_range_incl(MPI_Group group, int n_triplets, int ranges[][3],
|
2004-07-30 06:58:53 +04:00
|
|
|
MPI_Group *new_group)
|
|
|
|
{
|
2012-01-20 06:06:21 +04:00
|
|
|
int err, i,indx;
|
2006-03-15 00:01:46 +03:00
|
|
|
int group_size;
|
2009-05-07 20:45:18 +04:00
|
|
|
int * elements_int_list;
|
2004-03-02 03:14:13 +03:00
|
|
|
|
2004-03-15 05:25:49 +03:00
|
|
|
/* can't act on NULL group */
|
|
|
|
if( MPI_PARAM_CHECK ) {
|
2008-02-20 01:15:52 +03:00
|
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
2006-03-15 00:01:46 +03:00
|
|
|
|
2008-02-20 01:15:52 +03:00
|
|
|
if ( (MPI_GROUP_NULL == group) || (NULL == group) ||
|
2007-03-21 14:10:42 +03:00
|
|
|
(NULL == new_group) ) {
|
2008-02-20 01:15:52 +03:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_GROUP,
|
|
|
|
FUNC_NAME);
|
|
|
|
}
|
2006-03-15 00:01:46 +03:00
|
|
|
|
2008-02-20 01:15:52 +03:00
|
|
|
group_size = ompi_group_size ( group);
|
2009-05-07 20:45:18 +04:00
|
|
|
elements_int_list = (int *) malloc(sizeof(int) * (group_size+1));
|
2008-02-20 01:15:52 +03:00
|
|
|
if (NULL == elements_int_list) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER, FUNC_NAME);
|
|
|
|
}
|
|
|
|
for (i = 0; i < group_size; i++) {
|
|
|
|
elements_int_list[i] = -1;
|
|
|
|
}
|
2006-03-16 20:51:16 +03:00
|
|
|
|
2008-02-20 01:15:52 +03:00
|
|
|
for ( i=0; i < n_triplets; i++) {
|
2009-05-07 20:45:18 +04:00
|
|
|
if ((0 > ranges[i][0]) || (ranges[i][0] > group_size)) {
|
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
2009-05-07 20:45:18 +04:00
|
|
|
if ((0 > ranges[i][1]) || (ranges[i][1] > group_size)) {
|
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
|
|
|
if (ranges[i][2] == 0) {
|
2009-05-07 20:45:18 +04:00
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
2009-05-07 20:45:18 +04:00
|
|
|
|
|
|
|
if ((ranges[i][0] < ranges[i][1])) {
|
|
|
|
if (ranges[i][2] < 0) {
|
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
|
|
|
/* positive stride */
|
2012-01-20 06:06:21 +04:00
|
|
|
for (indx = ranges[i][0]; indx <= ranges[i][1]; indx += ranges[i][2]) {
|
2008-02-20 01:15:52 +03:00
|
|
|
/* make sure rank has not already been selected */
|
2012-01-20 06:06:21 +04:00
|
|
|
if (elements_int_list[indx] != -1) {
|
2009-05-07 20:45:18 +04:00
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
2012-01-20 06:06:21 +04:00
|
|
|
elements_int_list[indx] = i;
|
2009-05-07 20:45:18 +04:00
|
|
|
}
|
|
|
|
} else if (ranges[i][0] > ranges[i][1]) {
|
|
|
|
if (ranges[i][2] > 0) {
|
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
|
|
|
/* negative stride */
|
2012-01-20 06:06:21 +04:00
|
|
|
for (indx = ranges[i][0]; indx >= ranges[i][1]; indx += ranges[i][2]) {
|
2008-02-20 01:15:52 +03:00
|
|
|
/* make sure rank has not already been selected */
|
2012-01-20 06:06:21 +04:00
|
|
|
if (elements_int_list[indx] != -1) {
|
2009-05-07 20:45:18 +04:00
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
2012-01-20 06:06:21 +04:00
|
|
|
elements_int_list[indx] = i;
|
2009-05-07 20:45:18 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* first_rank == last_rank */
|
2012-01-20 06:06:21 +04:00
|
|
|
indx = ranges[i][0];
|
|
|
|
if (elements_int_list[indx] != -1) {
|
2009-05-07 20:45:18 +04:00
|
|
|
goto error_rank;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
2012-01-20 06:06:21 +04:00
|
|
|
elements_int_list[indx] = i;
|
2008-02-20 01:15:52 +03:00
|
|
|
}
|
|
|
|
}
|
2006-03-16 20:51:16 +03:00
|
|
|
|
2008-02-20 01:15:52 +03:00
|
|
|
free ( elements_int_list);
|
2004-03-15 05:25:49 +03:00
|
|
|
}
|
|
|
|
|
2008-02-20 01:15:52 +03:00
|
|
|
OPAL_CR_ENTER_LIBRARY();
|
|
|
|
|
|
|
|
err = ompi_group_range_incl ( group, n_triplets, ranges, new_group );
|
|
|
|
OMPI_ERRHANDLER_RETURN(err, MPI_COMM_WORLD, err, FUNC_NAME );
|
2009-05-07 20:45:18 +04:00
|
|
|
|
|
|
|
error_rank:
|
|
|
|
free(elements_int_list);
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK, FUNC_NAME);
|
2004-01-25 04:51:49 +03:00
|
|
|
}
|