2004-01-12 00:26:55 +03:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* 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.
|
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-01-12 00:26:55 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-02-15 00:26:30 +03:00
|
|
|
#include "coll_basic.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
|
|
|
|
#include "mpi.h"
|
2005-08-13 01:42:07 +04:00
|
|
|
#include "ompi/include/constants.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "communicator/communicator.h"
|
|
|
|
#include "mca/coll/coll.h"
|
|
|
|
#include "mca/coll/base/coll_tags.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
#include "coll_basic.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* allgatherv_intra
|
2004-01-12 00:26:55 +03:00
|
|
|
*
|
2005-01-30 03:24:05 +03:00
|
|
|
* Function: - allgatherv using other MPI collectives
|
2004-01-12 00:26:55 +03:00
|
|
|
* Accepts: - same as MPI_Allgatherv()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
|
|
|
mca_coll_basic_allgatherv_intra(void *sbuf, int scount,
|
2005-08-10 21:53:43 +04:00
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int *rcounts, int *disps,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm)
|
2004-01-12 00:26:55 +03:00
|
|
|
{
|
2005-08-10 14:51:42 +04:00
|
|
|
int i, size;
|
|
|
|
int err;
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Collect all values at each process, one at a time. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
size = ompi_comm_size(comm);
|
|
|
|
for (i = 0; i < size; ++i) {
|
2005-08-10 21:30:46 +04:00
|
|
|
err = comm->c_coll.coll_gatherv(sbuf, scount, sdtype, rbuf,
|
|
|
|
rcounts, disps, rdtype, i, comm);
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
return MPI_SUCCESS;
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allgatherv_inter
|
|
|
|
*
|
2005-01-30 03:24:05 +03:00
|
|
|
* Function: - allgatherv using other MPI collectives
|
2004-06-29 04:02:25 +04:00
|
|
|
* Accepts: - same as MPI_Allgatherv()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
|
|
|
mca_coll_basic_allgatherv_inter(void *sbuf, int scount,
|
2005-08-10 21:53:43 +04:00
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int *rcounts, int *disps,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm)
|
2004-06-29 04:02:25 +04:00
|
|
|
{
|
2004-08-04 02:12:57 +04:00
|
|
|
int size, rsize;
|
2004-08-05 22:52:14 +04:00
|
|
|
int err, i;
|
2005-08-10 14:51:42 +04:00
|
|
|
int *scounts = NULL;
|
|
|
|
int *sdisps = NULL;
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
rsize = ompi_comm_remote_size(comm);
|
|
|
|
size = ompi_comm_size(comm);
|
|
|
|
|
|
|
|
scounts = (int *) malloc(rsize * sizeof(int));
|
|
|
|
sdisps = (int *) calloc(rsize, sizeof(int));
|
|
|
|
if (NULL == scounts || NULL == sdisps) {
|
2005-08-10 21:53:43 +04:00
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
2004-08-04 02:12:57 +04:00
|
|
|
}
|
2005-08-10 14:51:42 +04:00
|
|
|
|
|
|
|
for (i = 0; i < rsize; i++) {
|
2005-08-10 21:53:43 +04:00
|
|
|
scounts[i] = scount;
|
2004-08-05 22:52:14 +04:00
|
|
|
}
|
2004-08-04 02:12:57 +04:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
err = comm->c_coll.coll_alltoallv(sbuf, scounts, sdisps, sdtype,
|
2005-08-10 21:53:43 +04:00
|
|
|
rbuf, rcounts, disps, rdtype, comm);
|
2004-08-04 02:12:57 +04:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
if (NULL != sdisps) {
|
2005-08-10 21:53:43 +04:00
|
|
|
free(sdisps);
|
2004-08-04 02:12:57 +04:00
|
|
|
}
|
2005-08-10 14:51:42 +04:00
|
|
|
if (NULL != scounts) {
|
2005-08-10 21:53:43 +04:00
|
|
|
free(scounts);
|
2004-08-04 02:12:57 +04:00
|
|
|
}
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
return err;
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|