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"
|
2004-06-29 04:02:25 +04:00
|
|
|
#include "include/constants.h"
|
|
|
|
#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
|
|
|
|
*/
|
2004-06-29 04:02:25 +04:00
|
|
|
int mca_coll_basic_gather_intra(void *sbuf, int scount,
|
|
|
|
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) {
|
|
|
|
err = mca_pml.pml_send(sbuf, scount, sdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm);
|
|
|
|
return err;
|
|
|
|
}
|
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-06-07 19:33:53 +04:00
|
|
|
err = ompi_ddt_get_extent(rdtype, &lb, &extent);
|
2004-06-29 04:02:25 +04:00
|
|
|
if (OMPI_SUCCESS != err) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERROR;
|
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
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
/* simple optimization */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-05-08 03:09:55 +04:00
|
|
|
if (i == rank) {
|
2004-06-07 19:33:53 +04:00
|
|
|
err = ompi_ddt_sndrcv(sbuf, scount, sdtype, ptmp,
|
2004-05-08 03:09:55 +04:00
|
|
|
rcount, rdtype,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER, comm);
|
|
|
|
} else {
|
|
|
|
err = mca_pml.pml_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 */
|
2004-01-12 00:26:55 +03: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
|
|
|
|
*/
|
|
|
|
int mca_coll_basic_gather_inter(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
int root, struct ompi_communicator_t *comm)
|
|
|
|
{
|
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);
|
|
|
|
|
|
|
|
|
|
|
|
if ( MPI_PROC_NULL == root ) {
|
|
|
|
/* do nothing */
|
|
|
|
err = OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
else if ( MPI_ROOT != root ) {
|
|
|
|
/* Everyone but root sends data and returns. */
|
|
|
|
err = mca_pml.pml_send(sbuf, scount, sdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* 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.pml_recv(ptmp, rcount, rdtype, i,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
comm, MPI_STATUS_IGNORE);
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
return err;
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|