2004-01-14 03:42:02 +00:00
|
|
|
/*
|
2004-11-22 01:38:40 +00: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-14 03:42:02 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
2004-03-26 14:15:20 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
2004-01-14 03:42:02 +00:00
|
|
|
#ifndef MCA_PML_BASE_SEND_REQUEST_H
|
|
|
|
#define MCA_PML_BASE_SEND_REQUEST_H
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-03-26 14:15:20 +00:00
|
|
|
#include "datatype/datatype.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mca/pml/base/pml_base_request.h"
|
2004-01-14 03:42:02 +00:00
|
|
|
|
2004-10-20 22:31:03 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-10-22 16:06:05 +00:00
|
|
|
OMPI_DECLSPEC extern ompi_class_t mca_pml_base_send_request_t_class;
|
2004-01-28 22:52:51 +00:00
|
|
|
|
|
|
|
|
2004-03-26 14:15:20 +00:00
|
|
|
/**
|
|
|
|
* Base type for send requests
|
|
|
|
*/
|
2004-06-24 19:28:30 +00:00
|
|
|
struct mca_pml_base_send_request_t {
|
2004-07-15 18:08:20 +00:00
|
|
|
mca_pml_base_request_t req_base; /** base request type - common data structure for use by wait/test */
|
2004-10-19 22:00:19 +00:00
|
|
|
void *req_addr; /**< pointer to send buffer - may not be application buffer */
|
|
|
|
size_t req_count; /**< number of elements in send buffer */
|
|
|
|
ompi_datatype_t* req_datatype; /**< pointer to datatype */
|
2004-07-15 18:08:20 +00:00
|
|
|
size_t req_offset; /**< number of bytes that have already been assigned to a fragment */
|
|
|
|
size_t req_bytes_packed; /**< packed size of a message given the datatype and count */
|
|
|
|
size_t req_bytes_sent; /**< number of bytes that have been sent */
|
|
|
|
mca_pml_base_send_mode_t req_send_mode; /**< type of send */
|
2004-08-05 19:35:10 +00:00
|
|
|
struct mca_ptl_base_module_t* req_ptl; /**< PTL that is selected for first fragment */
|
2004-07-15 18:08:20 +00:00
|
|
|
struct mca_ptl_base_peer_t* req_peer; /**< PTL peer instance that will be used for first fragment */
|
|
|
|
ompi_ptr_t req_peer_match; /**< matched receive at peer */
|
|
|
|
ompi_ptr_t req_peer_addr; /**< peers remote buffer address */
|
2004-11-17 22:47:08 +00:00
|
|
|
uint64_t req_peer_size; /**< size of peers remote buffer */
|
2004-09-09 21:49:46 +00:00
|
|
|
bool req_cached; /**< has this request been obtained from the ptls cache */
|
2004-07-15 18:08:20 +00:00
|
|
|
ompi_convertor_t req_convertor; /**< convertor that describes this datatype */
|
2004-11-04 21:39:14 +00:00
|
|
|
volatile int32_t req_lock; /**< lock used by the scheduler */
|
2004-01-14 03:42:02 +00:00
|
|
|
};
|
2004-06-24 19:28:30 +00:00
|
|
|
typedef struct mca_pml_base_send_request_t mca_pml_base_send_request_t;
|
2004-01-14 03:42:02 +00:00
|
|
|
|
|
|
|
|
2004-03-16 15:12:11 +00:00
|
|
|
|
2004-03-26 14:15:20 +00:00
|
|
|
/**
|
|
|
|
* Initialize a send request with call parameters.
|
|
|
|
*
|
|
|
|
* @param request (IN) Send request
|
|
|
|
* @param addr (IN) User buffer
|
|
|
|
* @param count (IN) Number of elements of indicated datatype.
|
|
|
|
* @param datatype (IN) User defined datatype
|
|
|
|
* @param peer (IN) Destination rank
|
|
|
|
* @param tag (IN) User defined tag
|
|
|
|
* @param comm (IN) Communicator
|
|
|
|
* @param mode (IN) Send mode (STANDARD,BUFFERED,SYNCHRONOUS,READY)
|
|
|
|
* @param persistent (IN) Is request persistent.
|
2004-10-19 22:00:19 +00:00
|
|
|
*
|
|
|
|
* Performa any one-time initialization. Note that per-use initialization
|
|
|
|
* is done in the send request start routine.
|
2004-03-26 14:15:20 +00:00
|
|
|
*/
|
2004-10-12 15:50:01 +00:00
|
|
|
|
|
|
|
#define MCA_PML_BASE_SEND_REQUEST_INIT( request, \
|
|
|
|
addr, \
|
|
|
|
count, \
|
|
|
|
datatype, \
|
|
|
|
peer, \
|
|
|
|
tag, \
|
|
|
|
comm, \
|
|
|
|
mode, \
|
|
|
|
persistent) \
|
|
|
|
{ \
|
|
|
|
/* increment reference count on communicator */ \
|
|
|
|
OBJ_RETAIN(comm); \
|
|
|
|
\
|
|
|
|
OMPI_REQUEST_INIT(&(request)->req_base.req_ompi); \
|
2004-10-19 22:00:19 +00:00
|
|
|
request->req_addr = addr; \
|
|
|
|
request->req_count = count; \
|
|
|
|
request->req_datatype = datatype; \
|
2004-10-12 15:50:01 +00:00
|
|
|
request->req_send_mode = mode; \
|
|
|
|
request->req_base.req_addr = addr; \
|
|
|
|
request->req_base.req_count = count; \
|
|
|
|
request->req_base.req_datatype = datatype; \
|
|
|
|
request->req_base.req_peer = peer; \
|
|
|
|
request->req_base.req_tag = tag; \
|
|
|
|
request->req_base.req_comm = comm; \
|
|
|
|
request->req_base.req_proc = ompi_comm_peer_lookup(comm,peer); \
|
|
|
|
request->req_base.req_persistent = persistent; \
|
|
|
|
request->req_base.req_pml_complete = false; \
|
|
|
|
request->req_base.req_free_called = false; \
|
|
|
|
\
|
|
|
|
/* initialize datatype convertor for this request */ \
|
|
|
|
if(count > 0) { \
|
2004-09-19 07:12:29 +00:00
|
|
|
ompi_convertor_copy( request->req_base.req_proc->proc_convertor, \
|
2004-10-12 15:50:01 +00:00
|
|
|
&request->req_convertor); \
|
|
|
|
/* We will create a convertor specialized for send */ \
|
|
|
|
/* just to be able to get the packed size. This size */ \
|
|
|
|
/* depend on the conversion used sender side or receiver */ \
|
|
|
|
/* size. BEWARE this convertor is not suitable for the */ \
|
|
|
|
/* sending operation !! */ \
|
|
|
|
ompi_convertor_init_for_send( &request->req_convertor, \
|
|
|
|
0, \
|
|
|
|
request->req_base.req_datatype, \
|
|
|
|
request->req_base.req_count, \
|
|
|
|
request->req_base.req_addr, \
|
|
|
|
0, NULL ); \
|
|
|
|
ompi_convertor_get_packed_size( &request->req_convertor, \
|
|
|
|
&(request->req_bytes_packed) ); \
|
|
|
|
} else { \
|
|
|
|
request->req_bytes_packed = 0; \
|
|
|
|
} \
|
2004-09-19 07:12:29 +00:00
|
|
|
}
|
2004-01-14 03:42:02 +00:00
|
|
|
|
|
|
|
|
2004-03-26 14:15:20 +00:00
|
|
|
/**
|
|
|
|
* Test to check if an acknowledgment has been received, with the match.
|
|
|
|
*
|
|
|
|
* @param request (IN) Send request.
|
|
|
|
* return TRUE if an ack/match has been received from peer.
|
|
|
|
*/
|
2004-10-12 15:50:01 +00:00
|
|
|
|
2004-06-24 19:28:30 +00:00
|
|
|
static inline bool mca_pml_base_send_request_matched(
|
|
|
|
mca_pml_base_send_request_t* request)
|
2004-03-26 14:15:20 +00:00
|
|
|
{
|
2004-05-20 13:45:34 +00:00
|
|
|
return (NULL != request->req_peer_match.pval);
|
2004-03-26 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
2004-10-27 20:28:09 +00:00
|
|
|
/**
|
|
|
|
* Atomically increase the request offset.
|
|
|
|
*
|
|
|
|
* @param request (IN) Send request.
|
|
|
|
* @param offset (IN) Increment.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void mca_pml_base_send_request_offset(
|
|
|
|
mca_pml_base_send_request_t* request,
|
|
|
|
size_t offset)
|
|
|
|
{
|
2004-11-17 22:47:08 +00:00
|
|
|
OMPI_THREAD_ADD32((int32_t*)(&request->req_offset), offset);
|
2004-10-27 20:28:09 +00:00
|
|
|
}
|
|
|
|
|
2004-10-20 22:31:03 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-01-14 03:42:02 +00:00
|
|
|
#endif
|
|
|
|
|