552c9ca5a0
WHAT: Open our low-level communication infrastructure by moving all necessary components (btl/rcache/allocator/mpool) down in OPAL All the components required for inter-process communications are currently deeply integrated in the OMPI layer. Several groups/institutions have express interest in having a more generic communication infrastructure, without all the OMPI layer dependencies. This communication layer should be made available at a different software level, available to all layers in the Open MPI software stack. As an example, our ORTE layer could replace the current OOB and instead use the BTL directly, gaining access to more reactive network interfaces than TCP. Similarly, external software libraries could take advantage of our highly optimized AM (active message) communication layer for their own purpose. UTK with support from Sandia, developped a version of Open MPI where the entire communication infrastucture has been moved down to OPAL (btl/rcache/allocator/mpool). Most of the moved components have been updated to match the new schema, with few exceptions (mainly BTLs where I have no way of compiling/testing them). Thus, the completion of this RFC is tied to being able to completing this move for all BTLs. For this we need help from the rest of the Open MPI community, especially those supporting some of the BTLs. A non-exhaustive list of BTLs that qualify here is: mx, portals4, scif, udapl, ugni, usnic. This commit was SVN r32317.
75 строки
2.4 KiB
C
75 строки
2.4 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2013 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 (c) 2010 Oracle and/or its affiliates. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
/**
|
|
* @file
|
|
*/
|
|
|
|
#ifndef MCA_PML_BFO_RDMAFRAG_H
|
|
#define MCA_PML_BFO_RDMAFRAG_H
|
|
|
|
#include "pml_bfo_hdr.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
typedef enum {
|
|
MCA_PML_BFO_RDMA_PUT,
|
|
MCA_PML_BFO_RDMA_GET
|
|
} mca_pml_bfo_rdma_state_t;
|
|
|
|
struct mca_pml_bfo_rdma_frag_t {
|
|
ompi_free_list_item_t super;
|
|
mca_bml_base_btl_t* rdma_bml;
|
|
#if PML_BFO
|
|
mca_btl_base_module_t* rdma_btl;
|
|
#endif /* PML_BFO */
|
|
mca_pml_bfo_hdr_t rdma_hdr;
|
|
mca_pml_bfo_rdma_state_t rdma_state;
|
|
size_t rdma_length;
|
|
uint8_t rdma_segs[MCA_BTL_SEG_MAX_SIZE * MCA_BTL_DES_MAX_SEGMENTS];
|
|
void *rdma_req;
|
|
struct mca_bml_base_endpoint_t* rdma_ep;
|
|
opal_convertor_t convertor;
|
|
mca_mpool_base_registration_t* reg;
|
|
uint32_t retries;
|
|
};
|
|
typedef struct mca_pml_bfo_rdma_frag_t mca_pml_bfo_rdma_frag_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_pml_bfo_rdma_frag_t);
|
|
|
|
|
|
#define MCA_PML_BFO_RDMA_FRAG_ALLOC(frag) \
|
|
do { \
|
|
ompi_free_list_item_t* item; \
|
|
OMPI_FREE_LIST_WAIT_MT(&mca_pml_bfo.rdma_frags, item); \
|
|
frag = (mca_pml_bfo_rdma_frag_t*)item; \
|
|
} while(0)
|
|
|
|
#define MCA_PML_BFO_RDMA_FRAG_RETURN(frag) \
|
|
do { \
|
|
/* return fragment */ \
|
|
OMPI_FREE_LIST_RETURN_MT(&mca_pml_bfo.rdma_frags, \
|
|
(ompi_free_list_item_t*)frag); \
|
|
} while(0)
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|
|
|