2011-11-02 15:07:57 +00:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2011-10-20 21:39:44 +00:00
|
|
|
/*
|
|
|
|
* 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 (c) 2006-2007 Voltaire. All rights reserved.
|
2016-05-03 10:09:23 -06:00
|
|
|
* Copyright (c) 2012-2016 Los Alamos National Security, LLC. All rights
|
2014-04-24 17:36:03 +00:00
|
|
|
* reserved.
|
2011-10-20 21:39:44 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_BTL_VADER_ENDPOINT_H
|
|
|
|
#define MCA_BTL_VADER_ENDPOINT_H
|
|
|
|
|
2014-10-17 17:06:33 -06:00
|
|
|
#include "opal_config.h"
|
|
|
|
#include "btl_vader_xpmem.h"
|
2015-11-02 12:07:08 -07:00
|
|
|
#include "opal/mca/rcache/base/rcache_base_vma.h"
|
2013-03-27 22:10:02 +00:00
|
|
|
|
2014-09-23 18:11:22 +00:00
|
|
|
#define MCA_BTL_VADER_FBOX_ALIGNMENT 32
|
|
|
|
#define MCA_BTL_VADER_FBOX_ALIGNMENT_MASK (MCA_BTL_VADER_FBOX_ALIGNMENT - 1)
|
|
|
|
|
2013-03-27 22:10:02 +00:00
|
|
|
struct vader_fifo_t;
|
|
|
|
|
2011-10-20 21:39:44 +00:00
|
|
|
/**
|
|
|
|
* An abstraction that represents a connection to a endpoint process.
|
|
|
|
* An instance of mca_ptl_base_endpoint_t is associated w/ each process
|
|
|
|
* and BTL pair at startup.
|
|
|
|
*/
|
|
|
|
|
2014-01-06 19:51:44 +00:00
|
|
|
struct mca_btl_vader_fbox_t;
|
|
|
|
|
2014-09-23 18:11:22 +00:00
|
|
|
typedef struct mca_btl_base_endpoint_t {
|
|
|
|
opal_list_item_t super;
|
|
|
|
|
|
|
|
/* per peer buffers */
|
|
|
|
struct {
|
2014-10-17 17:06:33 -06:00
|
|
|
unsigned char *buffer; /**< starting address of peer's fast box out */
|
2014-09-23 18:11:22 +00:00
|
|
|
uint32_t *startp;
|
2015-03-30 16:24:29 -06:00
|
|
|
unsigned int start;
|
|
|
|
uint16_t seq;
|
2014-09-23 18:11:22 +00:00
|
|
|
} fbox_in;
|
|
|
|
|
|
|
|
struct {
|
2014-10-17 17:06:33 -06:00
|
|
|
unsigned char *buffer; /**< starting address of peer's fast box in */
|
|
|
|
uint32_t *startp; /**< pointer to location storing start offset */
|
2015-03-30 16:24:29 -06:00
|
|
|
unsigned int start, end;
|
|
|
|
uint16_t seq;
|
2014-09-23 18:11:22 +00:00
|
|
|
} fbox_out;
|
|
|
|
|
|
|
|
int32_t peer_smp_rank; /**< my peer's SMP process rank. Used for accessing
|
|
|
|
* SMP specfic data structures. */
|
2016-05-03 10:09:23 -06:00
|
|
|
volatile size_t send_count; /**< number of fragments sent to this peer */
|
2014-10-17 17:06:33 -06:00
|
|
|
char *segment_base; /**< start of the peer's segment (in the address space
|
|
|
|
* of this process) */
|
2014-09-23 18:11:22 +00:00
|
|
|
|
2014-10-17 17:06:33 -06:00
|
|
|
struct vader_fifo_t *fifo; /**< */
|
2014-09-23 18:11:22 +00:00
|
|
|
|
2014-10-17 17:06:33 -06:00
|
|
|
opal_mutex_t lock; /**< lock to protect endpoint structures from concurrent
|
|
|
|
* access */
|
2014-09-23 18:11:22 +00:00
|
|
|
|
2014-10-17 17:06:33 -06:00
|
|
|
union {
|
George did the work and deserves all the credit for it. Ralph did the merge, and deserves whatever blame results from errors in it :-)
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.
2014-07-26 00:47:28 +00:00
|
|
|
#if OPAL_BTL_VADER_HAVE_XPMEM
|
2014-10-17 17:06:33 -06:00
|
|
|
struct {
|
2015-11-02 12:07:08 -07:00
|
|
|
mca_rcache_base_vma_module_t *vma_module;
|
2014-10-17 17:06:33 -06:00
|
|
|
xpmem_apid_t apid; /**< xpmem apid for remote peer */
|
|
|
|
} xpmem;
|
2014-01-06 19:51:44 +00:00
|
|
|
#endif
|
2014-10-17 17:06:33 -06:00
|
|
|
struct {
|
|
|
|
pid_t pid; /**< pid of remote peer (used for CMA) */
|
|
|
|
opal_shmem_ds_t *seg_ds; /**< stored segment information for detach */
|
|
|
|
} other;
|
|
|
|
} segment_data;
|
|
|
|
|
2016-03-02 10:46:44 -07:00
|
|
|
opal_mutex_t pending_frags_lock; /**< protect pending_frags */
|
2014-10-17 17:06:33 -06:00
|
|
|
opal_list_t pending_frags; /**< fragments pending fast box space */
|
|
|
|
bool waiting; /**< endpoint is on the component wait list */
|
2014-09-23 18:11:22 +00:00
|
|
|
} mca_btl_base_endpoint_t;
|
|
|
|
|
|
|
|
typedef mca_btl_base_endpoint_t mca_btl_vader_endpoint_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_vader_endpoint_t);
|
|
|
|
|
|
|
|
static inline void mca_btl_vader_endpoint_setup_fbox_recv (struct mca_btl_base_endpoint_t *endpoint, void *base)
|
|
|
|
{
|
|
|
|
endpoint->fbox_in.startp = (uint32_t *) base;
|
|
|
|
endpoint->fbox_in.start = MCA_BTL_VADER_FBOX_ALIGNMENT;
|
|
|
|
endpoint->fbox_in.seq = 0;
|
2016-03-02 10:46:44 -07:00
|
|
|
opal_atomic_wmb ();
|
|
|
|
endpoint->fbox_in.buffer = base;
|
2014-09-23 18:11:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mca_btl_vader_endpoint_setup_fbox_send (struct mca_btl_base_endpoint_t *endpoint, void *base)
|
|
|
|
{
|
|
|
|
endpoint->fbox_out.start = MCA_BTL_VADER_FBOX_ALIGNMENT;
|
|
|
|
endpoint->fbox_out.end = MCA_BTL_VADER_FBOX_ALIGNMENT;
|
|
|
|
endpoint->fbox_out.startp = (uint32_t *) base;
|
2014-09-23 20:25:36 +00:00
|
|
|
endpoint->fbox_out.startp[0] = MCA_BTL_VADER_FBOX_ALIGNMENT;
|
2014-09-23 18:11:22 +00:00
|
|
|
endpoint->fbox_out.seq = 0;
|
|
|
|
|
|
|
|
/* zero out the first header in the fast box */
|
|
|
|
memset ((char *) base + MCA_BTL_VADER_FBOX_ALIGNMENT, 0, MCA_BTL_VADER_FBOX_ALIGNMENT);
|
2016-03-02 10:46:44 -07:00
|
|
|
|
|
|
|
opal_atomic_wmb ();
|
|
|
|
endpoint->fbox_out.buffer = base;
|
2014-09-23 18:11:22 +00:00
|
|
|
}
|
2011-10-20 21:39:44 +00:00
|
|
|
|
|
|
|
#endif /* MCA_BTL_VADER_ENDPOINT_H */
|