2d9c509add
This commit was SVN r8039.
182 строки
6.0 KiB
C
182 строки
6.0 KiB
C
/*
|
|
* 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.
|
|
* 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$
|
|
*/
|
|
|
|
#ifndef MCA_BTL_IB_FRAG_H
|
|
#define MCA_BTL_IB_FRAG_H
|
|
|
|
|
|
#define MCA_BTL_IB_FRAG_ALIGN (8)
|
|
#include "ompi_config.h"
|
|
#include "btl_mvapi.h"
|
|
|
|
#include <vapi.h>
|
|
#include <mtl_common.h>
|
|
#include <vapi_common.h>
|
|
#include "mca/mpool/mvapi/mpool_mvapi.h"
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
OMPI_DECLSPEC OBJ_CLASS_DECLARATION(mca_btl_mvapi_frag_t);
|
|
|
|
struct mca_btl_mvapi_header_t {
|
|
mca_btl_base_tag_t tag;
|
|
int16_t credits;
|
|
};
|
|
typedef struct mca_btl_mvapi_header_t mca_btl_mvapi_header_t;
|
|
|
|
|
|
typedef enum {
|
|
MCA_BTL_IB_FRAG_SEND,
|
|
MCA_BTL_IB_FRAG_PUT,
|
|
MCA_BTL_IB_FRAG_GET,
|
|
MCA_BTL_IB_FRAG_ACK
|
|
} mca_btl_mvapi_frag_type_t;
|
|
|
|
|
|
/**
|
|
* IB send fragment derived type.
|
|
*/
|
|
struct mca_btl_mvapi_frag_t {
|
|
mca_btl_base_descriptor_t base;
|
|
mca_btl_base_segment_t segment;
|
|
struct mca_btl_base_endpoint_t *endpoint;
|
|
size_t size;
|
|
int rc;
|
|
|
|
union{
|
|
VAPI_rr_desc_t rr_desc;
|
|
VAPI_sr_desc_t sr_desc;
|
|
};
|
|
VAPI_sg_lst_entry_t sg_entry;
|
|
/* VAPI_mr_hndl_t mem_hndl; */
|
|
VAPI_ret_t ret;
|
|
mca_btl_mvapi_header_t *hdr;
|
|
mca_mpool_mvapi_registration_t * vapi_reg;
|
|
};
|
|
typedef struct mca_btl_mvapi_frag_t mca_btl_mvapi_frag_t;
|
|
OBJ_CLASS_DECLARATION(mca_btl_mvapi_frag_t);
|
|
|
|
|
|
typedef struct mca_btl_mvapi_frag_t mca_btl_mvapi_send_frag_eager_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_mvapi_send_frag_eager_t);
|
|
|
|
typedef struct mca_btl_mvapi_frag_t mca_btl_mvapi_send_frag_max_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_mvapi_send_frag_max_t);
|
|
|
|
typedef struct mca_btl_mvapi_frag_t mca_btl_mvapi_send_frag_frag_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_mvapi_send_frag_frag_t);
|
|
|
|
typedef struct mca_btl_mvapi_frag_t mca_btl_mvapi_recv_frag_eager_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_mvapi_recv_frag_eager_t);
|
|
|
|
typedef struct mca_btl_mvapi_frag_t mca_btl_mvapi_recv_frag_max_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_mvapi_recv_frag_max_t);
|
|
|
|
|
|
|
|
|
|
/*
|
|
* Allocate an IB send descriptor
|
|
*
|
|
*/
|
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_EAGER(btl, frag, rc) \
|
|
{ \
|
|
\
|
|
opal_list_item_t *item; \
|
|
OMPI_FREE_LIST_WAIT(&((mca_btl_mvapi_module_t*)btl)->send_free_eager, item, rc); \
|
|
frag = (mca_btl_mvapi_frag_t*) item; \
|
|
}
|
|
|
|
#define MCA_BTL_IB_FRAG_RETURN_EAGER(btl, frag) \
|
|
{ \
|
|
OMPI_FREE_LIST_RETURN(&((mca_btl_mvapi_module_t*)btl)->send_free_eager, (opal_list_item_t*)(frag)); \
|
|
}
|
|
|
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_MAX(btl, frag, rc) \
|
|
{ \
|
|
\
|
|
opal_list_item_t *item; \
|
|
OMPI_FREE_LIST_WAIT(&((mca_btl_mvapi_module_t*)btl)->send_free_max, item, rc); \
|
|
frag = (mca_btl_mvapi_frag_t*) item; \
|
|
}
|
|
|
|
#define MCA_BTL_IB_FRAG_RETURN_MAX(btl, frag) \
|
|
{ \
|
|
OMPI_FREE_LIST_RETURN(&((mca_btl_mvapi_module_t*)btl)->send_free_max, (opal_list_item_t*)(frag)); \
|
|
}
|
|
|
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_FRAG(btl, frag, rc) \
|
|
{ \
|
|
\
|
|
opal_list_item_t *item; \
|
|
OMPI_FREE_LIST_WAIT(&((mca_btl_mvapi_module_t*)btl)->send_free_frag, item, rc); \
|
|
frag = (mca_btl_mvapi_frag_t*) item; \
|
|
}
|
|
|
|
#define MCA_BTL_IB_FRAG_RETURN_FRAG(btl, frag) \
|
|
{ \
|
|
OMPI_FREE_LIST_RETURN(&((mca_btl_mvapi_module_t*)btl)->send_free_frag, (opal_list_item_t*)(frag)); \
|
|
}
|
|
|
|
|
|
|
|
#define MCA_BTL_IB_FRAG_PROGRESS(frag) \
|
|
do { \
|
|
switch(frag->sr_desc.opcode) { \
|
|
case VAPI_SEND: \
|
|
if(OMPI_SUCCESS != mca_btl_mvapi_endpoint_send(frag->endpoint, frag)) { \
|
|
BTL_ERROR(("error in posting pending send\n")); \
|
|
} \
|
|
break; \
|
|
case VAPI_RDMA_WRITE: \
|
|
if(OMPI_SUCCESS != mca_btl_mvapi_put((mca_btl_base_module_t*) mvapi_btl, \
|
|
frag->endpoint, \
|
|
(mca_btl_base_descriptor_t*) frag)) { \
|
|
BTL_ERROR(("error in posting pending rdma write\n")); \
|
|
} \
|
|
break; \
|
|
case VAPI_RDMA_READ: \
|
|
if(OMPI_SUCCESS != mca_btl_mvapi_get((mca_btl_base_module_t *) mvapi_btl, \
|
|
frag->endpoint, \
|
|
(mca_btl_base_descriptor_t*) frag)) { \
|
|
BTL_ERROR(("error in posting pending rdma read\n")); \
|
|
} \
|
|
break; \
|
|
default: \
|
|
BTL_ERROR(("error in posting pending operation, invalide opcode %d\n", frag->sr_desc.opcode)); \
|
|
break; \
|
|
} \
|
|
} while (0)
|
|
|
|
|
|
struct mca_btl_mvapi_module_t;
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
}
|
|
#endif
|
|
#endif
|