2005-09-01 03:38:09 +04: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.
|
2005-09-01 03:38:09 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "coll_tuned.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
|
|
|
#include "ompi/datatype/datatype.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/coll/base/coll_tags.h"
|
|
|
|
#include "ompi/mca/pml/pml.h"
|
2005-11-22 06:42:15 +03:00
|
|
|
#include "coll_tuned_util.h"
|
2005-09-01 03:38:09 +04:00
|
|
|
|
2007-01-11 00:56:59 +03:00
|
|
|
int ompi_coll_tuned_sendrecv_actual( void* sendbuf, int scount,
|
|
|
|
ompi_datatype_t* sdatatype,
|
2006-10-18 06:00:46 +04:00
|
|
|
int dest, int stag,
|
2007-01-11 00:56:59 +03:00
|
|
|
void* recvbuf, int rcount,
|
|
|
|
ompi_datatype_t* rdatatype,
|
2006-10-18 06:00:46 +04:00
|
|
|
int source, int rtag,
|
|
|
|
struct ompi_communicator_t* comm,
|
|
|
|
ompi_status_public_t* status )
|
2005-09-01 03:38:09 +04:00
|
|
|
|
|
|
|
{ /* post receive first, then send, then waitall... should be fast (I hope) */
|
2006-10-18 06:00:46 +04:00
|
|
|
int err, line = 0;
|
|
|
|
ompi_request_t* reqs[2];
|
|
|
|
ompi_status_public_t statuses[2];
|
2005-09-01 03:38:09 +04:00
|
|
|
|
|
|
|
/* post new irecv */
|
2007-01-11 00:56:59 +03:00
|
|
|
err = MCA_PML_CALL(irecv( recvbuf, rcount, rdatatype, source, rtag,
|
|
|
|
comm, &reqs[0]));
|
2005-09-01 03:38:09 +04:00
|
|
|
if (err != MPI_SUCCESS) { line = __LINE__; goto error_handler; }
|
|
|
|
|
|
|
|
/* send data to children */
|
2007-01-11 00:56:59 +03:00
|
|
|
err = MCA_PML_CALL(isend( sendbuf, scount, sdatatype, dest, stag,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm, &reqs[1]));
|
2005-09-01 03:38:09 +04:00
|
|
|
if (err != MPI_SUCCESS) { line = __LINE__; goto error_handler; }
|
|
|
|
|
|
|
|
err = ompi_request_wait_all( 2, reqs, statuses );
|
|
|
|
if (err != MPI_SUCCESS) { line = __LINE__; goto error_handler; }
|
|
|
|
|
2005-09-01 21:12:28 +04:00
|
|
|
if (MPI_STATUS_IGNORE!=status) {
|
|
|
|
*status = statuses[0];
|
|
|
|
}
|
2005-09-01 03:38:09 +04:00
|
|
|
|
|
|
|
return (MPI_SUCCESS);
|
|
|
|
|
|
|
|
error_handler:
|
2007-01-11 00:56:59 +03:00
|
|
|
OPAL_OUTPUT ((ompi_coll_tuned_stream, "%s:%d: Error %d occurred\n",
|
|
|
|
__FILE__,line,err));
|
2005-09-01 03:38:09 +04:00
|
|
|
return (err);
|
|
|
|
}
|
|
|
|
|
2006-02-01 02:21:46 +03:00
|
|
|
/*
|
|
|
|
* localcompleted version that makes sure the send has completed locally
|
2007-01-11 00:56:59 +03:00
|
|
|
* Currently this is a sync call, but will change to locally completed
|
|
|
|
* version when available
|
2006-02-01 02:21:46 +03:00
|
|
|
*/
|
|
|
|
|
2007-01-11 00:56:59 +03:00
|
|
|
int ompi_coll_tuned_sendrecv_actual_localcompleted( void* sendbuf, int scount,
|
|
|
|
ompi_datatype_t* sdatatype,
|
|
|
|
int dest, int stag,
|
|
|
|
void* recvbuf, int rcount,
|
|
|
|
ompi_datatype_t* rdatatype,
|
|
|
|
int source, int rtag,
|
|
|
|
struct ompi_communicator_t* comm,
|
|
|
|
ompi_status_public_t* status )
|
2006-02-01 02:21:46 +03:00
|
|
|
|
|
|
|
{ /* post receive first, then [local] sync send, then wait... should be fast (I hope) */
|
2006-10-18 06:00:46 +04:00
|
|
|
int err, line = 0;
|
2006-11-11 02:06:19 +03:00
|
|
|
ompi_request_t* req[2];
|
|
|
|
ompi_status_public_t tmpstatus[2];
|
2006-02-01 02:21:46 +03:00
|
|
|
|
|
|
|
/* post new irecv */
|
2007-01-11 00:56:59 +03:00
|
|
|
err = MCA_PML_CALL(irecv( recvbuf, rcount, rdatatype, source, rtag,
|
|
|
|
comm, &(req[0])));
|
2006-02-01 02:21:46 +03:00
|
|
|
if (err != MPI_SUCCESS) { line = __LINE__; goto error_handler; }
|
|
|
|
|
|
|
|
/* send data to children */
|
2006-11-11 02:06:19 +03:00
|
|
|
err = MCA_PML_CALL(isend( sendbuf, scount, sdatatype, dest, stag,
|
|
|
|
MCA_PML_BASE_SEND_SYNCHRONOUS, comm, &(req[1])));
|
2006-02-01 02:21:46 +03:00
|
|
|
if (err != MPI_SUCCESS) { line = __LINE__; goto error_handler; }
|
2005-11-08 06:36:38 +03:00
|
|
|
|
2006-11-11 02:06:19 +03:00
|
|
|
err = ompi_request_wait_all( 2, req, tmpstatus );
|
2006-02-01 02:21:46 +03:00
|
|
|
if (err != MPI_SUCCESS) { line = __LINE__; goto error_handler; }
|
|
|
|
|
|
|
|
if (MPI_STATUS_IGNORE!=status) {
|
2006-11-11 02:06:19 +03:00
|
|
|
*status = tmpstatus[0];
|
2006-02-01 02:21:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return (MPI_SUCCESS);
|
|
|
|
|
|
|
|
error_handler:
|
|
|
|
OPAL_OUTPUT ((ompi_coll_tuned_stream, "%s:%d: Error %d occurred\n",__FILE__,line,err));
|
|
|
|
return (err);
|
|
|
|
}
|