2010-07-13 14:46:20 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2013-07-04 12:34:37 +04:00
|
|
|
* Copyright (c) 2004-2013 The University of Tennessee and The University
|
2010-07-13 14:46:20 +04:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2010-07-13 14:46:20 +04:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2012-03-15 14:20:46 +04:00
|
|
|
* Copyright (c) 2009-2012 Oracle and/or its affiliates. All rights reserved.
|
2010-07-13 14:46:20 +04:00
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2010-07-13 14:46:20 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2010-07-13 14:46:20 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "ompi/request/request.h"
|
2012-03-15 14:20:46 +04:00
|
|
|
#include "ompi/message/message.h"
|
2010-07-13 14:46:20 +04:00
|
|
|
#include "pml_bfo_recvreq.h"
|
|
|
|
|
|
|
|
|
|
|
|
int mca_pml_bfo_iprobe(int src,
|
|
|
|
int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
int *matched, ompi_status_public_t * status)
|
|
|
|
{
|
|
|
|
int rc = OMPI_SUCCESS;
|
|
|
|
mca_pml_bfo_recv_request_t recvreq;
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT( &recvreq, mca_pml_bfo_recv_request_t );
|
|
|
|
recvreq.req_recv.req_base.req_ompi.req_type = OMPI_REQUEST_PML;
|
|
|
|
recvreq.req_recv.req_base.req_type = MCA_PML_REQUEST_IPROBE;
|
|
|
|
|
|
|
|
MCA_PML_BFO_RECV_REQUEST_INIT(&recvreq, NULL, 0, &ompi_mpi_char.dt, src, tag, comm, true);
|
|
|
|
MCA_PML_BFO_RECV_REQUEST_START(&recvreq);
|
|
|
|
|
|
|
|
if( recvreq.req_recv.req_base.req_ompi.req_complete == true ) {
|
|
|
|
if( NULL != status ) {
|
2012-10-04 18:39:51 +04:00
|
|
|
*status = recvreq.req_recv.req_base.req_ompi.req_status;
|
2010-07-13 14:46:20 +04:00
|
|
|
}
|
2012-03-15 14:20:46 +04:00
|
|
|
rc = recvreq.req_recv.req_base.req_ompi.req_status.MPI_ERROR;
|
2010-07-13 14:46:20 +04:00
|
|
|
*matched = 1;
|
|
|
|
} else {
|
|
|
|
*matched = 0;
|
|
|
|
opal_progress();
|
|
|
|
}
|
|
|
|
MCA_PML_BASE_RECV_REQUEST_FINI( &recvreq.req_recv );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int mca_pml_bfo_probe(int src,
|
|
|
|
int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
ompi_status_public_t * status)
|
|
|
|
{
|
2012-03-15 14:20:46 +04:00
|
|
|
int rc = OMPI_SUCCESS;
|
2010-07-13 14:46:20 +04:00
|
|
|
mca_pml_bfo_recv_request_t recvreq;
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT( &recvreq, mca_pml_bfo_recv_request_t );
|
|
|
|
recvreq.req_recv.req_base.req_ompi.req_type = OMPI_REQUEST_PML;
|
|
|
|
recvreq.req_recv.req_base.req_type = MCA_PML_REQUEST_PROBE;
|
|
|
|
|
|
|
|
MCA_PML_BFO_RECV_REQUEST_INIT(&recvreq, NULL, 0, &ompi_mpi_char.dt, src, tag, comm, true);
|
|
|
|
MCA_PML_BFO_RECV_REQUEST_START(&recvreq);
|
|
|
|
|
|
|
|
ompi_request_wait_completion(&recvreq.req_recv.req_base.req_ompi);
|
2012-03-15 14:20:46 +04:00
|
|
|
rc = recvreq.req_recv.req_base.req_ompi.req_status.MPI_ERROR;
|
2010-07-13 14:46:20 +04:00
|
|
|
if (NULL != status) {
|
2012-10-04 18:39:51 +04:00
|
|
|
*status = recvreq.req_recv.req_base.req_ompi.req_status;
|
2010-07-13 14:46:20 +04:00
|
|
|
}
|
2012-03-15 14:20:46 +04:00
|
|
|
|
2010-07-13 14:46:20 +04:00
|
|
|
MCA_PML_BASE_RECV_REQUEST_FINI( &recvreq.req_recv );
|
2012-03-15 14:20:46 +04:00
|
|
|
return rc;
|
2010-07-13 14:46:20 +04:00
|
|
|
}
|
2012-02-06 21:35:21 +04:00
|
|
|
|
|
|
|
|
|
|
|
int
|
2012-03-15 14:20:46 +04:00
|
|
|
mca_pml_bfo_improbe(int src,
|
|
|
|
int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
2015-06-24 06:59:57 +03:00
|
|
|
int *matched,
|
2012-03-15 14:20:46 +04:00
|
|
|
struct ompi_message_t **message,
|
|
|
|
ompi_status_public_t * status)
|
2012-02-06 21:35:21 +04:00
|
|
|
{
|
2012-03-15 14:20:46 +04:00
|
|
|
int rc = OMPI_SUCCESS;
|
|
|
|
mca_pml_bfo_recv_request_t *recvreq;
|
|
|
|
|
2013-03-08 01:55:22 +04:00
|
|
|
*message = ompi_message_alloc();
|
|
|
|
if (NULL == *message) return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
|
2013-07-04 12:34:37 +04:00
|
|
|
MCA_PML_BFO_RECV_REQUEST_ALLOC(recvreq);
|
2012-03-15 14:20:46 +04:00
|
|
|
if (NULL == recvreq)
|
2013-07-04 12:34:37 +04:00
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
2012-03-15 14:20:46 +04:00
|
|
|
recvreq->req_recv.req_base.req_type = MCA_PML_REQUEST_IMPROBE;
|
|
|
|
|
|
|
|
/* initialize the request enough to probe and get the status */
|
2015-06-24 06:59:57 +03:00
|
|
|
MCA_PML_BFO_RECV_REQUEST_INIT(recvreq, NULL, 0, &ompi_mpi_char.dt,
|
2012-03-15 14:20:46 +04:00
|
|
|
src, tag, comm, false);
|
|
|
|
MCA_PML_BFO_RECV_REQUEST_START(recvreq);
|
|
|
|
|
|
|
|
if( recvreq->req_recv.req_base.req_ompi.req_complete == true ) {
|
|
|
|
if( NULL != status ) {
|
|
|
|
*status = recvreq->req_recv.req_base.req_ompi.req_status;
|
|
|
|
}
|
|
|
|
*matched = 1;
|
|
|
|
|
|
|
|
(*message)->comm = comm;
|
|
|
|
(*message)->req_ptr = recvreq;
|
2013-03-08 01:55:22 +04:00
|
|
|
(*message)->peer = recvreq->req_recv.req_base.req_ompi.req_status.MPI_SOURCE;
|
2012-03-15 14:20:46 +04:00
|
|
|
(*message)->count = recvreq->req_recv.req_base.req_ompi.req_status._ucount;
|
|
|
|
|
2013-03-08 01:55:22 +04:00
|
|
|
rc = recvreq->req_recv.req_base.req_ompi.req_status.MPI_ERROR;
|
2012-03-15 14:20:46 +04:00
|
|
|
} else {
|
|
|
|
*matched = 0;
|
|
|
|
|
|
|
|
/* we only free if we didn't match, because we're going to
|
|
|
|
translate the request into a receive request later on if it
|
|
|
|
was matched */
|
2013-03-08 01:55:22 +04:00
|
|
|
MCA_PML_BFO_RECV_REQUEST_RETURN( recvreq );
|
|
|
|
ompi_message_return(*message);
|
|
|
|
*message = MPI_MESSAGE_NULL;
|
2015-06-24 06:59:57 +03:00
|
|
|
|
2012-03-15 14:20:46 +04:00
|
|
|
opal_progress();
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2012-02-06 21:35:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2012-03-15 14:20:46 +04:00
|
|
|
mca_pml_bfo_mprobe(int src,
|
|
|
|
int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
struct ompi_message_t **message,
|
|
|
|
ompi_status_public_t * status)
|
2012-02-06 21:35:21 +04:00
|
|
|
{
|
2012-03-15 14:20:46 +04:00
|
|
|
int rc = OMPI_SUCCESS;
|
|
|
|
mca_pml_bfo_recv_request_t *recvreq;
|
|
|
|
|
2013-03-08 01:55:22 +04:00
|
|
|
*message = ompi_message_alloc();
|
|
|
|
if (NULL == *message) return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
|
2013-07-04 12:34:37 +04:00
|
|
|
MCA_PML_BFO_RECV_REQUEST_ALLOC(recvreq);
|
2012-03-15 14:20:46 +04:00
|
|
|
if (NULL == recvreq)
|
2013-07-04 12:34:37 +04:00
|
|
|
return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
2012-03-15 14:20:46 +04:00
|
|
|
recvreq->req_recv.req_base.req_type = MCA_PML_REQUEST_MPROBE;
|
|
|
|
|
|
|
|
/* initialize the request enough to probe and get the status */
|
2015-06-24 06:59:57 +03:00
|
|
|
MCA_PML_BFO_RECV_REQUEST_INIT(recvreq, NULL, 0, &ompi_mpi_char.dt,
|
2012-03-15 14:20:46 +04:00
|
|
|
src, tag, comm, false);
|
|
|
|
MCA_PML_BFO_RECV_REQUEST_START(recvreq);
|
|
|
|
|
|
|
|
ompi_request_wait_completion(&recvreq->req_recv.req_base.req_ompi);
|
2013-03-08 01:55:22 +04:00
|
|
|
rc = recvreq->req_recv.req_base.req_ompi.req_status.MPI_ERROR;
|
2012-03-15 14:20:46 +04:00
|
|
|
|
|
|
|
if( NULL != status ) {
|
|
|
|
*status = recvreq->req_recv.req_base.req_ompi.req_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*message)->comm = comm;
|
|
|
|
(*message)->req_ptr = recvreq;
|
2013-03-08 01:55:22 +04:00
|
|
|
(*message)->peer = recvreq->req_recv.req_base.req_ompi.req_status.MPI_SOURCE;
|
2012-03-15 14:20:46 +04:00
|
|
|
(*message)->count = recvreq->req_recv.req_base.req_ompi.req_status._ucount;
|
|
|
|
|
2013-03-08 01:55:22 +04:00
|
|
|
return rc;
|
2012-02-06 21:35:21 +04:00
|
|
|
}
|