2005-05-24 02:06:50 +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.
|
2007-07-11 03:45:23 +04:00
|
|
|
* Copyright (c) 2004-2007 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-05-24 02:06:50 +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.
|
2007-06-12 20:25:26 +04:00
|
|
|
* Copyright (c) 2007 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2005-05-24 02:06:50 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "pml_ob1.h"
|
|
|
|
#include "pml_ob1_sendreq.h"
|
|
|
|
#include "pml_ob1_recvreq.h"
|
2006-03-31 21:09:09 +04:00
|
|
|
#include "ompi/peruse/peruse-internal.h"
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
int mca_pml_ob1_isend_init(void *buf,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t * datatype,
|
|
|
|
int dst,
|
|
|
|
int tag,
|
|
|
|
mca_pml_base_send_mode_t sendmode,
|
|
|
|
ompi_communicator_t * comm,
|
|
|
|
ompi_request_t ** request)
|
|
|
|
{
|
|
|
|
int rc;
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2005-07-20 10:48:11 +04:00
|
|
|
mca_pml_ob1_send_request_t *sendreq = NULL;
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_ALLOC(comm, dst, sendreq, rc);
|
2005-05-24 02:06:50 +04:00
|
|
|
if (rc != OMPI_SUCCESS)
|
|
|
|
return rc;
|
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_INIT(sendreq,
|
2007-07-11 03:45:23 +04:00
|
|
|
buf,
|
|
|
|
count,
|
|
|
|
datatype,
|
|
|
|
dst, tag,
|
|
|
|
comm, sendmode, true);
|
2008-05-05 17:57:27 +04:00
|
|
|
|
2007-08-23 09:52:33 +04:00
|
|
|
PERUSE_TRACE_COMM_EVENT (PERUSE_COMM_REQ_ACTIVATE,
|
|
|
|
&(sendreq)->req_send.req_base,
|
|
|
|
PERUSE_SEND);
|
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
*request = (ompi_request_t *) sendreq;
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int mca_pml_ob1_isend(void *buf,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t * datatype,
|
|
|
|
int dst,
|
|
|
|
int tag,
|
|
|
|
mca_pml_base_send_mode_t sendmode,
|
|
|
|
ompi_communicator_t * comm,
|
|
|
|
ompi_request_t ** request)
|
|
|
|
{
|
|
|
|
int rc;
|
2005-07-20 10:48:11 +04:00
|
|
|
mca_pml_ob1_send_request_t *sendreq = NULL;
|
2008-05-30 07:58:39 +04:00
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_ALLOC(comm, dst, sendreq, rc);
|
2005-05-24 02:06:50 +04:00
|
|
|
if (rc != OMPI_SUCCESS)
|
|
|
|
return rc;
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_INIT(sendreq,
|
2007-07-11 03:45:23 +04:00
|
|
|
buf,
|
|
|
|
count,
|
|
|
|
datatype,
|
|
|
|
dst, tag,
|
|
|
|
comm, sendmode, false);
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2007-08-23 09:52:33 +04:00
|
|
|
PERUSE_TRACE_COMM_EVENT (PERUSE_COMM_REQ_ACTIVATE,
|
|
|
|
&(sendreq)->req_send.req_base,
|
|
|
|
PERUSE_SEND);
|
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_START(sendreq, rc);
|
2005-05-24 02:06:50 +04:00
|
|
|
*request = (ompi_request_t *) sendreq;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int mca_pml_ob1_send(void *buf,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t * datatype,
|
|
|
|
int dst,
|
|
|
|
int tag,
|
|
|
|
mca_pml_base_send_mode_t sendmode,
|
|
|
|
ompi_communicator_t * comm)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
mca_pml_ob1_send_request_t *sendreq;
|
2008-05-30 07:58:39 +04:00
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_ALLOC(comm, dst, sendreq, rc);
|
2005-05-24 02:06:50 +04:00
|
|
|
if (rc != OMPI_SUCCESS)
|
|
|
|
return rc;
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_INIT(sendreq,
|
2005-08-12 06:41:14 +04:00
|
|
|
buf,
|
|
|
|
count,
|
|
|
|
datatype,
|
|
|
|
dst, tag,
|
|
|
|
comm, sendmode, false);
|
2007-08-23 09:52:33 +04:00
|
|
|
|
|
|
|
PERUSE_TRACE_COMM_EVENT (PERUSE_COMM_REQ_ACTIVATE,
|
|
|
|
&(sendreq)->req_send.req_base,
|
|
|
|
PERUSE_SEND);
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_START(sendreq, rc);
|
2005-05-24 02:06:50 +04:00
|
|
|
if (rc != OMPI_SUCCESS) {
|
2006-03-16 01:53:41 +03:00
|
|
|
MCA_PML_OB1_SEND_REQUEST_RETURN( sendreq );
|
2005-05-24 02:06:50 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2007-10-18 16:33:21 +04:00
|
|
|
ompi_request_wait_completion(&sendreq->req_send.req_base.req_ompi);
|
2006-03-31 21:09:09 +04:00
|
|
|
|
2006-03-16 01:53:41 +03:00
|
|
|
rc = sendreq->req_send.req_base.req_ompi.req_status.MPI_ERROR;
|
|
|
|
ompi_request_free( (ompi_request_t**)&sendreq );
|
|
|
|
return rc;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|