
Refs trac:3763 This commit was SVN r29908. The following Trac tickets were found above: Ticket 3763 --> https://svn.open-mpi.org/trac/ompi/ticket/3763
55 строки
1.5 KiB
C
55 строки
1.5 KiB
C
/*
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef OSHMEM_SPML_YODA_PUT_REQUEST_H
|
|
#define OSHMEM_SPML_YODA_PUT_REQUEST_H
|
|
|
|
#include "ompi/mca/btl/btl.h"
|
|
#include "oshmem/mca/spml/base/base.h"
|
|
#include "oshmem/mca/spml/base/spml_base_putreq.h"
|
|
#include "ompi/mca/mpool/base/base.h"
|
|
#include "ompi/mca/bml/bml.h"
|
|
#include "oshmem/mca/spml/yoda/spml_yoda_rdmafrag.h"
|
|
#include "oshmem/mca/spml/yoda/spml_yoda.h"
|
|
#include "orte/runtime/orte_globals.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
struct mca_spml_yoda_put_request_t {
|
|
mca_spml_base_put_request_t req_put;
|
|
mca_spml_yoda_rdma_frag_t put_frag;
|
|
};
|
|
|
|
typedef struct mca_spml_yoda_put_request_t mca_spml_yoda_put_request_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_spml_yoda_put_request_t);
|
|
|
|
static inline mca_spml_yoda_put_request_t *mca_spml_yoda_putreq_alloc(int dst) {
|
|
ompi_free_list_item_t *item;
|
|
mca_spml_yoda_put_request_t *putreq;
|
|
|
|
OMPI_FREE_LIST_WAIT_MT(&mca_spml_base_put_requests, item);
|
|
putreq = (mca_spml_yoda_put_request_t*) item;
|
|
assert(putreq);
|
|
putreq->req_put.req_base.req_free_called = false;
|
|
putreq->req_put.req_base.req_oshmem.req_complete = false;
|
|
|
|
return putreq;
|
|
}
|
|
|
|
void mca_spml_yoda_put_completion(mca_btl_base_module_t* btl,
|
|
struct mca_btl_base_endpoint_t* ep,
|
|
struct mca_btl_base_descriptor_t* des,
|
|
int status);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* OSHMEM_SPML_YODA_PUT_REQUEST_H */
|