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.
|
|
|
|
* $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"
|
2004-06-29 04:02:25 +04:00
|
|
|
#include "include/constants.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mca/coll/coll.h"
|
|
|
|
#include "mca/coll/base/coll_tags.h"
|
2004-06-29 04:02:25 +04:00
|
|
|
#include "mca/pml/pml.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
#include "coll_basic.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* scatter_intra
|
2004-01-12 00:26:55 +03:00
|
|
|
*
|
|
|
|
* Function: - scatter operation
|
|
|
|
* Accepts: - same arguments as MPI_Scatter()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2004-06-29 04:02:25 +04:00
|
|
|
int mca_coll_basic_scatter_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
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int rank;
|
|
|
|
int size;
|
|
|
|
int err;
|
|
|
|
char *ptmp;
|
2004-06-29 04:02:25 +04:00
|
|
|
long lb;
|
|
|
|
long incr;
|
|
|
|
|
|
|
|
/* Initialize */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2004-06-29 04:02:25 +04:00
|
|
|
rank = ompi_comm_rank(comm);
|
|
|
|
size = ompi_comm_size(comm);
|
2004-01-12 00:26:55 +03:00
|
|
|
|
|
|
|
/* If not root, receive data. */
|
|
|
|
|
|
|
|
if (rank != root) {
|
2004-06-29 04:02:25 +04:00
|
|
|
err = mca_pml.pml_recv(rbuf, rcount, rdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_SCATTER,
|
|
|
|
comm, MPI_STATUS_IGNORE);
|
2004-01-12 00:26:55 +03:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* I am the root, loop sending data. */
|
|
|
|
|
2004-06-29 04:02:25 +04:00
|
|
|
err = ompi_ddt_get_extent(rdtype, &lb, &incr);
|
|
|
|
if (OMPI_SUCCESS != err) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
2004-01-12 00:26:55 +03:00
|
|
|
incr *= scount;
|
|
|
|
for (i = 0, ptmp = (char *) sbuf; i < size; ++i, ptmp += incr) {
|
|
|
|
|
|
|
|
/* simple optimization */
|
|
|
|
|
|
|
|
if (i == rank) {
|
2004-06-29 04:02:25 +04:00
|
|
|
err = ompi_ddt_sndrcv(ptmp, scount, sdtype, rbuf,
|
|
|
|
rcount, rdtype, MCA_COLL_BASE_TAG_SCATTER, comm);
|
2004-01-12 00:26:55 +03:00
|
|
|
} else {
|
2004-06-29 04:02:25 +04:00
|
|
|
err = mca_pml.pml_send(ptmp, scount, sdtype, i,
|
|
|
|
MCA_COLL_BASE_TAG_SCATTER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm);
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
return MPI_SUCCESS;
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scatter_inter
|
|
|
|
*
|
|
|
|
* Function: - scatter operation
|
|
|
|
* Accepts: - same arguments as MPI_Scatter()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
|
|
|
int mca_coll_basic_scatter_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 rank;
|
|
|
|
int size;
|
|
|
|
int err;
|
|
|
|
char *ptmp;
|
|
|
|
long lb;
|
|
|
|
long incr;
|
|
|
|
ompi_request_t **reqs=comm->c_coll_basic_data->mccb_reqs;
|
|
|
|
|
|
|
|
/* Initialize */
|
|
|
|
|
|
|
|
rank = ompi_comm_rank(comm);
|
|
|
|
size = ompi_comm_remote_size(comm);
|
|
|
|
|
|
|
|
if ( MPI_PROC_NULL == root ) {
|
|
|
|
/* do nothing */
|
|
|
|
err = OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
else if ( MPI_ROOT != root ) {
|
|
|
|
/* If not root, receive data. */
|
|
|
|
err = mca_pml.pml_recv(rbuf, rcount, rdtype, root,
|
|
|
|
MCA_COLL_BASE_TAG_SCATTER,
|
|
|
|
comm, MPI_STATUS_IGNORE);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/* I am the root, loop sending data. */
|
|
|
|
err = ompi_ddt_get_extent(rdtype, &lb, &incr);
|
|
|
|
if (OMPI_SUCCESS != err) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
incr *= scount;
|
|
|
|
for (i = 0, ptmp = (char *) sbuf; i < size; ++i, ptmp += incr) {
|
|
|
|
err = mca_pml.pml_isend(ptmp, scount, sdtype, i,
|
|
|
|
MCA_COLL_BASE_TAG_SCATTER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm, reqs++);
|
|
|
|
if (OMPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-15 20:47:09 +03:00
|
|
|
err = ompi_request_wait_all (size, comm->c_coll_basic_data->mccb_reqs,
|
|
|
|
MPI_STATUSES_IGNORE);
|
2004-08-04 02:12:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|