2004-01-12 00:26:55 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03: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 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"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
2005-09-13 00:21:53 +04:00
|
|
|
#include "ompi/datatype/datatype.h"
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/coll/base/coll_tags.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* alltoallw_intra
|
2004-01-12 00:26:55 +03:00
|
|
|
*
|
2005-01-30 03:24:05 +03:00
|
|
|
* Function: - MPI_Alltoallw
|
2004-01-12 00:26:55 +03:00
|
|
|
* Accepts: - same as MPI_Alltoallw()
|
|
|
|
* Returns: - MPI_SUCCESS or an MPI error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
|
|
|
mca_coll_basic_alltoallw_intra(void *sbuf, int *scounts, int *sdisps,
|
2005-08-10 21:53:43 +04:00
|
|
|
struct ompi_datatype_t **sdtypes,
|
|
|
|
void *rbuf, int *rcounts, int *rdisps,
|
|
|
|
struct ompi_datatype_t **rdtypes,
|
2007-08-19 07:37:49 +04:00
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
struct mca_coll_base_module_1_1_0_t *module)
|
2004-01-12 00:26:55 +03:00
|
|
|
{
|
2005-08-10 14:51:42 +04:00
|
|
|
int i;
|
|
|
|
int size;
|
|
|
|
int rank;
|
|
|
|
int err;
|
|
|
|
char *psnd;
|
|
|
|
char *prcv;
|
2006-11-08 19:54:03 +03:00
|
|
|
int nreqs;
|
2005-08-10 14:51:42 +04:00
|
|
|
MPI_Request *preq;
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_module_t *basic_module = (mca_coll_basic_module_t*) module;
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Initialize. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
size = ompi_comm_size(comm);
|
|
|
|
rank = ompi_comm_rank(comm);
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* simple optimization */
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
psnd = ((char *) sbuf) + sdisps[rank];
|
|
|
|
prcv = ((char *) rbuf) + rdisps[rank];
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
if (0 != scounts[rank]) {
|
2005-08-10 21:53:43 +04:00
|
|
|
err = ompi_ddt_sndrcv(psnd, scounts[rank], sdtypes[rank],
|
|
|
|
prcv, rcounts[rank], rdtypes[rank]);
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
2005-08-10 14:51:42 +04:00
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* If only one process, we're done. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
if (1 == size) {
|
2005-08-10 21:53:43 +04:00
|
|
|
return MPI_SUCCESS;
|
2005-08-10 14:51:42 +04:00
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Initiate all send/recv to/from others. */
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
nreqs = 0;
|
2007-08-19 07:37:49 +04:00
|
|
|
preq = basic_module->mccb_reqs;
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Post all receives first -- a simple optimization */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
for (i = 0; i < size; ++i) {
|
2005-08-10 21:53:43 +04:00
|
|
|
if (i == rank || 0 == rcounts[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
prcv = ((char *) rbuf) + rdisps[i];
|
|
|
|
err = MCA_PML_CALL(irecv_init(prcv, rcounts[i], rdtypes[i],
|
|
|
|
i, MCA_COLL_BASE_TAG_ALLTOALLW, comm,
|
|
|
|
preq++));
|
|
|
|
++nreqs;
|
|
|
|
if (MPI_SUCCESS != err) {
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_free_reqs(basic_module->mccb_reqs,
|
2005-08-10 21:53:43 +04:00
|
|
|
nreqs);
|
|
|
|
return err;
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
2005-08-10 14:51:42 +04:00
|
|
|
|
|
|
|
/* Now post all sends */
|
|
|
|
|
|
|
|
for (i = 0; i < size; ++i) {
|
2005-08-10 21:53:43 +04:00
|
|
|
if (i == rank || 0 == scounts[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
psnd = ((char *) sbuf) + sdisps[i];
|
|
|
|
err = MCA_PML_CALL(isend_init(psnd, scounts[i], sdtypes[i],
|
|
|
|
i, MCA_COLL_BASE_TAG_ALLTOALLW,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm,
|
|
|
|
preq++));
|
|
|
|
++nreqs;
|
|
|
|
if (MPI_SUCCESS != err) {
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_free_reqs(basic_module->mccb_reqs,
|
2005-08-10 21:53:43 +04:00
|
|
|
nreqs);
|
|
|
|
return err;
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Start your engines. This will never return an error. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
MCA_PML_CALL(start(nreqs, basic_module->mccb_reqs));
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Wait for them all. If there's an error, note that we don't care
|
|
|
|
* what the error was -- just that there *was* an error. The PML
|
|
|
|
* will finish all requests, even if one or more of them fail.
|
|
|
|
* i.e., by the end of this call, all the requests are free-able.
|
|
|
|
* So free them anyway -- even if there was an error, and return the
|
|
|
|
* error after we free everything. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
err = ompi_request_wait_all(nreqs, basic_module->mccb_reqs,
|
2005-08-10 21:53:43 +04:00
|
|
|
MPI_STATUSES_IGNORE);
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Free the requests. */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_free_reqs(basic_module->mccb_reqs, nreqs);
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* All done */
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* alltoallw_inter
|
|
|
|
*
|
2005-01-30 03:24:05 +03:00
|
|
|
* Function: - MPI_Alltoallw
|
2004-06-29 04:02:25 +04:00
|
|
|
* Accepts: - same as MPI_Alltoallw()
|
|
|
|
* Returns: - MPI_SUCCESS or an MPI error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
|
|
|
mca_coll_basic_alltoallw_inter(void *sbuf, int *scounts, int *sdisps,
|
2005-08-10 21:53:43 +04:00
|
|
|
struct ompi_datatype_t **sdtypes,
|
|
|
|
void *rbuf, int *rcounts, int *rdisps,
|
|
|
|
struct ompi_datatype_t **rdtypes,
|
2007-08-19 07:37:49 +04:00
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
struct mca_coll_base_module_1_1_0_t *module)
|
2004-06-29 04:02:25 +04:00
|
|
|
{
|
2004-08-04 02:12:57 +04:00
|
|
|
int i;
|
|
|
|
int size;
|
|
|
|
int rank;
|
|
|
|
int err;
|
|
|
|
char *psnd;
|
|
|
|
char *prcv;
|
2006-11-08 19:54:03 +03:00
|
|
|
int nreqs;
|
2004-08-04 02:12:57 +04:00
|
|
|
MPI_Request *preq;
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_module_t *basic_module = (mca_coll_basic_module_t*) module;
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* Initialize. */
|
|
|
|
size = ompi_comm_remote_size(comm);
|
|
|
|
rank = ompi_comm_rank(comm);
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* Initiate all send/recv to/from others. */
|
|
|
|
nreqs = size * 2;
|
2007-08-19 07:37:49 +04:00
|
|
|
preq = basic_module->mccb_reqs;
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* Post all receives first -- a simple optimization */
|
|
|
|
for (i = 0; i < size; ++i) {
|
2005-08-10 21:53:43 +04:00
|
|
|
prcv = ((char *) rbuf) + rdisps[i];
|
|
|
|
err = MCA_PML_CALL(irecv_init(prcv, rcounts[i], rdtypes[i],
|
|
|
|
i, MCA_COLL_BASE_TAG_ALLTOALLW,
|
|
|
|
comm, preq++));
|
|
|
|
if (OMPI_SUCCESS != err) {
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_free_reqs(basic_module->mccb_reqs,
|
2005-08-10 21:53:43 +04:00
|
|
|
nreqs);
|
|
|
|
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
|
|
|
/* Now post all sends */
|
|
|
|
for (i = 0; i < size; ++i) {
|
2005-08-10 21:53:43 +04:00
|
|
|
psnd = ((char *) sbuf) + sdisps[i];
|
|
|
|
err = MCA_PML_CALL(isend_init(psnd, scounts[i], sdtypes[i],
|
|
|
|
i, MCA_COLL_BASE_TAG_ALLTOALLW,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm,
|
|
|
|
preq++));
|
|
|
|
if (OMPI_SUCCESS != err) {
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_free_reqs(basic_module->mccb_reqs,
|
2005-08-10 21:53:43 +04:00
|
|
|
nreqs);
|
|
|
|
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
|
|
|
/* Start your engines. This will never return an error. */
|
2007-08-19 07:37:49 +04:00
|
|
|
MCA_PML_CALL(start(nreqs, basic_module->mccb_reqs));
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* Wait for them all. If there's an error, note that we don't care
|
2005-08-10 14:51:42 +04:00
|
|
|
* what the error was -- just that there *was* an error. The PML
|
|
|
|
* will finish all requests, even if one or more of them fail.
|
|
|
|
* i.e., by the end of this call, all the requests are free-able.
|
|
|
|
* So free them anyway -- even if there was an error, and return the
|
|
|
|
* error after we free everything. */
|
2007-08-19 07:37:49 +04:00
|
|
|
err = ompi_request_wait_all(nreqs, basic_module->mccb_reqs,
|
2005-08-10 21:53:43 +04:00
|
|
|
MPI_STATUSES_IGNORE);
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* Free the requests. */
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_free_reqs(basic_module->mccb_reqs, nreqs);
|
2005-08-10 14:51:42 +04:00
|
|
|
|
2004-08-04 02:12:57 +04:00
|
|
|
/* All done */
|
|
|
|
return err;
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|