File: btl_ugni_rdma.h

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (145 lines) | stat: -rw-r--r-- 6,620 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
 * Copyright (c) 2011-2018 Los Alamos National Security, LLC. All rights
 *                         reserved.
 * Copyright (c) 2011      UT-Battelle, LLC. All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#if !defined(MCA_BTL_UGNI_RDMA_H)
#    define MCA_BTL_UGNI_RDMA_H

#    include "btl_ugni.h"
#    include "btl_ugni_device.h"
#    include "btl_ugni_frag.h"

int mca_btl_ugni_start_eager_get(mca_btl_base_endpoint_t *ep, mca_btl_ugni_eager_ex_frag_hdr_t hdr,
                                 mca_btl_ugni_base_frag_t *frag);

static inline void
init_post_desc(mca_btl_ugni_post_descriptor_t *post_desc, mca_btl_base_endpoint_t *endpoint,
               int order, gni_post_type_t op_type, uint64_t lcl_addr, gni_mem_handle_t lcl_mdh,
               uint64_t rem_addr, gni_mem_handle_t rem_mdh, uint64_t bufsize,
               gni_cq_handle_t cq_hndl, mca_btl_base_rdma_completion_fn_t cbfunc, void *cbcontext,
               void *cbdata, mca_btl_base_registration_handle_t *local_handle)
{
    post_desc->endpoint = endpoint;
    post_desc->cbfunc = cbfunc;
    post_desc->ctx = cbcontext;
    post_desc->cbdata = cbdata;
    post_desc->local_handle = local_handle;
    post_desc->gni_desc.type = op_type;
    post_desc->gni_desc.cq_mode = GNI_CQMODE_GLOBAL_EVENT;
    if (MCA_BTL_NO_ORDER == order) {
        post_desc->gni_desc.dlvr_mode = GNI_DLVMODE_PERFORMANCE;
    } else {
        post_desc->gni_desc.dlvr_mode = GNI_DLVMODE_NO_ADAPT;
    }
    post_desc->gni_desc.local_addr = (uint64_t) lcl_addr;
    post_desc->gni_desc.local_mem_hndl = lcl_mdh;
    post_desc->gni_desc.remote_addr = (uint64_t) rem_addr;
    post_desc->gni_desc.remote_mem_hndl = rem_mdh;
    post_desc->gni_desc.length = bufsize;
    post_desc->gni_desc.rdma_mode = 0;
    post_desc->gni_desc.src_cq_hndl = cq_hndl;
}

__opal_attribute_always_inline__ static inline int
mca_btl_ugni_post_fma(struct mca_btl_base_endpoint_t *endpoint, gni_post_type_t op_type,
                      size_t size, void *local_address, uint64_t remote_address,
                      mca_btl_base_registration_handle_t *local_handle,
                      mca_btl_base_registration_handle_t *remote_handle, int order,
                      mca_btl_base_rdma_completion_fn_t cbfunc, void *cbcontext, void *cbdata)
{
    mca_btl_ugni_post_descriptor_t post_desc;
    gni_mem_handle_t local_gni_handle = {0, 0};

    if (local_handle) {
        local_gni_handle = local_handle->gni_handle;
    }

    /* Post descriptor (CQ is ignored for FMA transactions) -- The CQ associated with the endpoint
     * is used. */
    init_post_desc(&post_desc, endpoint, order, op_type, (intptr_t) local_address, local_gni_handle,
                   remote_address, remote_handle->gni_handle, size, 0, cbfunc, cbcontext, cbdata,
                   local_handle);

    return mca_btl_ugni_endpoint_post_fma(endpoint, &post_desc);
}

static inline int mca_btl_ugni_post_bte(mca_btl_base_endpoint_t *endpoint, gni_post_type_t op_type,
                                        size_t size, void *local_address, uint64_t remote_address,
                                        mca_btl_base_registration_handle_t *local_handle,
                                        mca_btl_base_registration_handle_t *remote_handle,
                                        int order, mca_btl_base_rdma_completion_fn_t cbfunc,
                                        void *cbcontext, void *cbdata)
{
    mca_btl_ugni_module_t *module = mca_btl_ugni_ep_btl(endpoint);
    mca_btl_ugni_post_descriptor_t post_desc;
    int rc;

    /* There is a performance benefit to throttling the total number of active BTE transactions. Not
     * sure what the optimium is but the limit is enforced as a soft limit. */
    if (module->active_rdma_count >= mca_btl_ugni_component.active_rdma_threshold) {
        return OPAL_ERR_OUT_OF_RESOURCE;
    }

    (void) OPAL_THREAD_FETCH_ADD32(&module->active_rdma_count, 1);

    /* Post descriptor */
    init_post_desc(&post_desc, endpoint, order, op_type, (intptr_t) local_address,
                   local_handle->gni_handle, remote_address, remote_handle->gni_handle, size, 0,
                   cbfunc, cbcontext, cbdata, local_handle);

    rc = mca_btl_ugni_endpoint_post_rdma(endpoint, &post_desc);
    if (OPAL_UNLIKELY(OPAL_SUCCESS != rc)) {
        (void) OPAL_THREAD_FETCH_ADD32(&module->active_rdma_count, -1);
    }

    return rc;
}

static inline int mca_btl_ugni_post_cqwrite(mca_btl_base_endpoint_t *endpoint,
                                            mca_btl_ugni_cq_t *cq, gni_mem_handle_t irq_mhndl,
                                            uint64_t value,
                                            mca_btl_base_rdma_completion_fn_t cbfunc,
                                            void *cbcontext, void *cbdata)
{
    mca_btl_ugni_post_descriptor_t post_desc;

    post_desc.gni_desc.type = GNI_POST_CQWRITE;
    post_desc.gni_desc.cqwrite_value = value; /* up to 48 bytes here, not used for now */
    post_desc.gni_desc.cq_mode = GNI_CQMODE_GLOBAL_EVENT;
    post_desc.gni_desc.dlvr_mode = GNI_DLVMODE_IN_ORDER;
    post_desc.gni_desc.src_cq_hndl = cq->gni_handle;
    post_desc.gni_desc.remote_mem_hndl = irq_mhndl;
    post_desc.cq = cq;

    return mca_btl_ugni_endpoint_post_cqwrite(endpoint, &post_desc);
}

__opal_attribute_always_inline__ static inline int
mca_btl_ugni_post(mca_btl_base_endpoint_t *endpoint, int get, size_t size, void *local_address,
                  uint64_t remote_address, mca_btl_base_registration_handle_t *local_handle,
                  mca_btl_base_registration_handle_t *remote_handle, int order,
                  mca_btl_base_rdma_completion_fn_t cbfunc, void *cbcontext, void *cbdata)
{
    const gni_post_type_t fma_ops[2] = {GNI_POST_FMA_PUT, GNI_POST_FMA_GET};
    const gni_post_type_t rdma_ops[2] = {GNI_POST_RDMA_PUT, GNI_POST_RDMA_GET};
    const size_t fma_limit = (size_t)(get ? mca_btl_ugni_component.ugni_fma_get_limit
                                          : mca_btl_ugni_component.ugni_fma_put_limit);

    if (size <= fma_limit) {
        return mca_btl_ugni_post_fma(endpoint, fma_ops[get], size, local_address, remote_address,
                                     local_handle, remote_handle, order, cbfunc, cbcontext, cbdata);
    }

    return mca_btl_ugni_post_bte(endpoint, rdma_ops[get], size, local_address, remote_address,
                                 local_handle, remote_handle, order, cbfunc, cbcontext, cbdata);
}

#endif /* MCA_BTL_UGNI_RDMA_H */