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-06-29 04:02:25 +04:00
|
|
|
#include "coll_basic.h"
|
2004-05-08 03:09:55 +04:00
|
|
|
#include "datatype/datatype.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mca/coll/coll.h"
|
|
|
|
#include "mca/coll/base/coll_tags.h"
|
2004-05-08 03:09:55 +04:00
|
|
|
#include "mca/pml/pml.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
|
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* gather_intra
|
2004-01-12 00:26:55 +03:00
|
|
|
*
|
|
|
|
* Function: - basic gather operation
|
|
|
|
* Accepts: - same arguments as MPI_Gather()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
|
|
|
mca_coll_basic_gather_intra(void *sbuf, int scount,
|
2005-08-10 21:53:43 +04:00
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
int root, struct ompi_communicator_t *comm)
|
2004-01-12 00:26:55 +03:00
|
|
|
{
|
2004-05-08 03:09:55 +04:00
|
|
|
int i;
|
|
|
|
int err;
|
|
|
|
int rank;
|
|
|
|
int size;
|
|
|
|
char *ptmp;
|
|
|
|
MPI_Aint incr;
|
|
|
|
MPI_Aint extent;
|
|
|
|
MPI_Aint lb;
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
size = ompi_comm_size(comm);
|
|
|
|
rank = ompi_comm_rank(comm);
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
/* Everyone but root sends data and returns. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
if (rank != root) {
|
2005-08-10 21:53:43 +04:00
|
|
|
return MCA_PML_CALL(send(sbuf, scount, sdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
2004-05-08 03:09:55 +04:00
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
/* I am the root, loop receiving the data. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-09-24 11:58:09 +04:00
|
|
|
if (OMPI_SUCCESS != (err = ompi_ddt_get_extent(rdtype, &lb, &extent))) {
|
2005-08-10 21:53:43 +04:00
|
|
|
return err;
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
incr = extent * rcount;
|
|
|
|
for (i = 0, ptmp = (char *) rbuf; i < size; ++i, ptmp += incr) {
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 21:53:43 +04:00
|
|
|
/* simple optimization */
|
|
|
|
|
|
|
|
if (i == rank) {
|
|
|
|
err = ompi_ddt_sndrcv(sbuf, scount, sdtype, ptmp,
|
|
|
|
rcount, rdtype);
|
|
|
|
} else {
|
|
|
|
err = MCA_PML_CALL(recv(ptmp, rcount, rdtype, i,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
comm, MPI_STATUS_IGNORE));
|
|
|
|
}
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
/* All done */
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
return MPI_SUCCESS;
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
2004-06-29 04:02:25 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* gather_inter
|
|
|
|
*
|
|
|
|
* Function: - basic gather operation
|
|
|
|
* Accepts: - same arguments as MPI_Gather()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
|
|
|
mca_coll_basic_gather_inter(void *sbuf, int scount,
|
2005-08-10 21:53:43 +04:00
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
int root, struct ompi_communicator_t *comm)
|
2004-06-29 04:02:25 +04:00
|
|
|
{
|
2004-08-04 02:12:57 +04:00
|
|
|
int i;
|
|
|
|
int err;
|
|
|
|
int rank;
|
|
|
|
int size;
|
|
|
|
char *ptmp;
|
|
|
|
MPI_Aint incr;
|
|
|
|
MPI_Aint extent;
|
|
|
|
MPI_Aint lb;
|
|
|
|
|
|
|
|
size = ompi_comm_remote_size(comm);
|
|
|
|
rank = ompi_comm_rank(comm);
|
|
|
|
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
if (MPI_PROC_NULL == root) {
|
2005-08-10 21:53:43 +04:00
|
|
|
/* do nothing */
|
|
|
|
err = OMPI_SUCCESS;
|
2005-08-10 14:51:42 +04:00
|
|
|
} else if (MPI_ROOT != root) {
|
2005-08-10 21:53:43 +04:00
|
|
|
/* Everyone but root sends data and returns. */
|
|
|
|
err = MCA_PML_CALL(send(sbuf, scount, sdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
2005-08-10 14:51:42 +04:00
|
|
|
} else {
|
2005-08-10 21:53:43 +04:00
|
|
|
/* I am the root, loop receiving the data. */
|
|
|
|
err = ompi_ddt_get_extent(rdtype, &lb, &extent);
|
|
|
|
if (OMPI_SUCCESS != err) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
incr = extent * rcount;
|
|
|
|
for (i = 0, ptmp = (char *) rbuf; i < size; ++i, ptmp += incr) {
|
|
|
|
err = MCA_PML_CALL(recv(ptmp, rcount, rdtype, i,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
comm, MPI_STATUS_IGNORE));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2004-08-04 02:12:57 +04:00
|
|
|
}
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* All done */
|
|
|
|
return err;
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|