2004-01-11 21:26:55 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* 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 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-11 21:26:55 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-02-14 21:26:30 +00:00
|
|
|
#include "coll_basic.h"
|
2004-01-11 21:26:55 +00:00
|
|
|
|
|
|
|
#include "mpi.h"
|
2005-08-12 21:42:07 +00:00
|
|
|
#include "ompi/include/constants.h"
|
2004-06-29 00:02:25 +00:00
|
|
|
#include "coll_basic.h"
|
2005-09-12 20:21:53 +00:00
|
|
|
#include "ompi/datatype/datatype.h"
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/coll/base/coll_tags.h"
|
|
|
|
#include "ompi/mca/pml/pml.h"
|
2004-01-11 21:26:55 +00:00
|
|
|
|
|
|
|
/*
|
2004-06-29 00:02:25 +00:00
|
|
|
* gather_intra
|
2004-01-11 21:26:55 +00:00
|
|
|
*
|
|
|
|
* Function: - basic gather operation
|
|
|
|
* Accepts: - same arguments as MPI_Gather()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 10:51:42 +00:00
|
|
|
int
|
|
|
|
mca_coll_basic_gather_intra(void *sbuf, int scount,
|
2005-08-10 17:53:43 +00:00
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
int root, struct ompi_communicator_t *comm)
|
2004-01-11 21:26:55 +00:00
|
|
|
{
|
2004-05-07 23:09:55 +00:00
|
|
|
int i;
|
|
|
|
int err;
|
|
|
|
int rank;
|
|
|
|
int size;
|
|
|
|
char *ptmp;
|
|
|
|
MPI_Aint incr;
|
|
|
|
MPI_Aint extent;
|
|
|
|
MPI_Aint lb;
|
2004-01-11 21:26:55 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
size = ompi_comm_size(comm);
|
|
|
|
rank = ompi_comm_rank(comm);
|
2004-01-11 21:26:55 +00:00
|
|
|
|
2004-05-07 23:09:55 +00:00
|
|
|
/* Everyone but root sends data and returns. */
|
2004-01-11 21:26:55 +00:00
|
|
|
|
2004-05-07 23:09:55 +00:00
|
|
|
if (rank != root) {
|
2005-08-10 17:53:43 +00:00
|
|
|
return MCA_PML_CALL(send(sbuf, scount, sdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_GATHER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
2004-05-07 23:09:55 +00:00
|
|
|
}
|
2004-01-11 21:26:55 +00:00
|
|
|
|
2004-05-07 23:09:55 +00:00
|
|
|
/* I am the root, loop receiving the data. */
|
2004-01-11 21:26:55 +00:00
|
|
|
|
2005-09-15 15:14:00 +00:00
|
|
|
ompi_ddt_get_extent(rdtype, &lb, &extent);
|
2004-05-07 23:09:55 +00:00
|
|
|
incr = extent * rcount;
|
|
|
|
for (i = 0, ptmp = (char *) rbuf; i < size; ++i, ptmp += incr) {
|
2005-08-10 17:53:43 +00:00
|
|
|
if (i == rank) {
|
2005-09-13 18:02:36 +00:00
|
|
|
if (MPI_IN_PLACE != sbuf) {
|
2005-09-15 15:14:00 +00:00
|
|
|
err = ompi_ddt_sndrcv(sbuf, scount, sdtype,
|
|
|
|
ptmp, rcount, rdtype);
|
|
|
|
} else {
|
|
|
|
err = MPI_SUCCESS;
|
2005-09-13 18:02:36 +00:00
|
|
|
}
|
2005-08-10 17:53:43 +00:00
|
|
|
} 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-11 21:26:55 +00:00
|
|
|
}
|
|
|
|
|
2004-05-07 23:09:55 +00:00
|
|
|
/* All done */
|
2005-08-10 10:51:42 +00:00
|
|
|
|
2004-05-07 23:09:55 +00:00
|
|
|
return MPI_SUCCESS;
|
2004-01-11 21:26:55 +00:00
|
|
|
}
|
2004-06-29 00:02:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* gather_inter
|
|
|
|
*
|
|
|
|
* Function: - basic gather operation
|
|
|
|
* Accepts: - same arguments as MPI_Gather()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 10:51:42 +00:00
|
|
|
int
|
|
|
|
mca_coll_basic_gather_inter(void *sbuf, int scount,
|
2005-08-10 17:53:43 +00: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 00:02:25 +00:00
|
|
|
{
|
2004-08-03 22:12:57 +00: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 10:51:42 +00:00
|
|
|
if (MPI_PROC_NULL == root) {
|
2005-08-10 17:53:43 +00:00
|
|
|
/* do nothing */
|
|
|
|
err = OMPI_SUCCESS;
|
2005-08-10 10:51:42 +00:00
|
|
|
} else if (MPI_ROOT != root) {
|
2005-08-10 17:53:43 +00: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 10:51:42 +00:00
|
|
|
} else {
|
2005-08-10 17:53:43 +00: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-03 22:12:57 +00:00
|
|
|
}
|
2005-08-10 10:51:42 +00:00
|
|
|
|
2004-08-03 22:12:57 +00:00
|
|
|
/* All done */
|
|
|
|
return err;
|
2004-06-29 00:02:25 +00:00
|
|
|
}
|