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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2011-2018 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 Triad National Security, LLC. All rights
* reserved.
* Copyright (c) 2020 Google, LLC. All rights reserveed.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef MCA_BTL_SM_FBOX_H
#define MCA_BTL_SM_FBOX_H
#include "opal/mca/btl/sm/btl_sm_types.h"
#include "opal/mca/btl/sm/btl_sm_virtual.h"
#define MCA_BTL_SM_POLL_COUNT 31
#define MCA_BTL_SM_FBOX_ALIGNMENT 32
#define MCA_BTL_SM_FBOX_ALIGNMENT_MASK (MCA_BTL_SM_FBOX_ALIGNMENT - 1)
/**
* 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.
*/
static inline void mca_btl_sm_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_SM_FBOX_ALIGNMENT;
endpoint->fbox_in.seq = 0;
opal_atomic_wmb();
endpoint->fbox_in.buffer = base;
}
static inline void mca_btl_sm_endpoint_setup_fbox_send(struct mca_btl_base_endpoint_t *endpoint,
opal_free_list_item_t *fbox)
{
void *base = fbox->ptr;
endpoint->fbox_out.start = MCA_BTL_SM_FBOX_ALIGNMENT;
endpoint->fbox_out.end = MCA_BTL_SM_FBOX_ALIGNMENT;
endpoint->fbox_out.startp = (uint32_t *) base;
endpoint->fbox_out.startp[0] = MCA_BTL_SM_FBOX_ALIGNMENT;
endpoint->fbox_out.seq = 0;
endpoint->fbox_out.fbox = fbox;
/* zero out the first header in the fast box */
memset((char *) base + MCA_BTL_SM_FBOX_ALIGNMENT, 0, MCA_BTL_SM_FBOX_ALIGNMENT);
opal_atomic_wmb();
endpoint->fbox_out.buffer = base;
}
typedef union mca_btl_sm_fbox_hdr_t {
struct {
/* NTH: on 32-bit platforms loading/unloading the header may be completed
* in multiple instructions. To ensure that seq is never loaded before tag
* and the tag is never read before seq put them in the same 32-bits of the
* header. */
/** message size */
uint32_t size;
/** message tag */
uint16_t tag;
/** sequence number */
uint16_t seq;
} data;
struct {
uint32_t value0;
uint32_t value1;
} data_i32;
uint64_t ival;
} mca_btl_sm_fbox_hdr_t;
#define MCA_BTL_SM_FBOX_HDR(x) ((mca_btl_sm_fbox_hdr_t *) (x))
#define MCA_BTL_SM_FBOX_OFFSET_MASK 0x7fffffff
#define MCA_BTL_SM_FBOX_HB_MASK 0x80000000
/* if the two offsets are equal and the high bit matches the buffer is empty else the buffer is
* full. note that start will never be end - 1 so this simplified conditional will always produce
* the correct result */
#define BUFFER_FREE(s, e, hbm, size) (((s + !hbm) > (e)) ? (s) - (e) : (size - (e)))
/** macro for checking if the high bit is set */
#define MCA_BTL_SM_FBOX_OFFSET_HBS(v) (!!((v) &MCA_BTL_SM_FBOX_HB_MASK))
void mca_btl_sm_poll_handle_frag(mca_btl_sm_hdr_t *hdr, mca_btl_base_endpoint_t *endpoint);
static inline void mca_btl_sm_fbox_set_header(mca_btl_sm_fbox_hdr_t *hdr, uint16_t tag,
uint16_t seq, uint32_t size)
{
mca_btl_sm_fbox_hdr_t tmp = {.data = {.tag = tag, .seq = seq, .size = size}};
/* clear out existing tag/seq */
hdr->data_i32.value1 = 0;
opal_atomic_wmb();
hdr->data_i32.value0 = size;
opal_atomic_wmb();
hdr->data_i32.value1 = tmp.data_i32.value1;
}
static inline mca_btl_sm_fbox_hdr_t mca_btl_sm_fbox_read_header(mca_btl_sm_fbox_hdr_t *hdr)
{
mca_btl_sm_fbox_hdr_t tmp = {.data_i32 = {.value1 = hdr->data_i32.value1}};
;
opal_atomic_rmb();
tmp.data_i32.value0 = hdr->data_i32.value0;
return tmp;
}
/* attempt to reserve a contiguous segment from the remote ep */
static inline bool mca_btl_sm_fbox_sendi(mca_btl_base_endpoint_t *ep, unsigned char tag,
void *restrict header, const size_t header_size,
void *restrict payload, const size_t payload_size)
{
const unsigned int fbox_size = mca_btl_sm_component.fbox_size;
size_t size = header_size + payload_size;
unsigned int start, end, buffer_free;
size_t data_size = size;
unsigned char *dst, *data;
bool hbs, hbm;
/* don't try to use the per-peer buffer for messages that will fill up more than 25% of the
* buffer */
if (OPAL_UNLIKELY(NULL == ep->fbox_out.buffer || size > (fbox_size >> 2))) {
return false;
}
OPAL_THREAD_LOCK(&ep->lock);
/* the high bit helps determine if the buffer is empty or full */
hbs = MCA_BTL_SM_FBOX_OFFSET_HBS(ep->fbox_out.end);
hbm = MCA_BTL_SM_FBOX_OFFSET_HBS(ep->fbox_out.start) == hbs;
/* read current start and end offsets and check for free space */
start = ep->fbox_out.start & MCA_BTL_SM_FBOX_OFFSET_MASK;
end = ep->fbox_out.end & MCA_BTL_SM_FBOX_OFFSET_MASK;
buffer_free = BUFFER_FREE(start, end, hbm, fbox_size);
/* need space for the fragment + the header */
size = (size + sizeof(mca_btl_sm_fbox_hdr_t) + MCA_BTL_SM_FBOX_ALIGNMENT_MASK)
& ~MCA_BTL_SM_FBOX_ALIGNMENT_MASK;
dst = ep->fbox_out.buffer + end;
if (OPAL_UNLIKELY(buffer_free < size)) {
/* check if we need to free up space for this fragment */
BTL_VERBOSE(("not enough room for a fragment of size %u. in use buffer segment: {start: "
"%x, end: %x, high bit matches: %d}",
(unsigned) size, start, end, (int) hbm));
/* read the current start pointer from the remote peer and recalculate the available buffer
* space */
start = ep->fbox_out.start = ep->fbox_out.startp[0];
/* recalculate how much buffer space is available */
start &= MCA_BTL_SM_FBOX_OFFSET_MASK;
hbm = MCA_BTL_SM_FBOX_OFFSET_HBS(ep->fbox_out.start) == hbs;
buffer_free = BUFFER_FREE(start, end, hbm, fbox_size);
opal_atomic_rmb();
/* if this is the end of the buffer and the fragment doesn't fit then mark the remaining
* buffer space to be skipped and check if the fragment can be written at the beginning of
* the buffer. */
if (OPAL_UNLIKELY(buffer_free > 0 && buffer_free < size && start <= end)) {
BTL_VERBOSE(("message will not fit in remaining buffer space. skipping to beginning"));
mca_btl_sm_fbox_set_header(MCA_BTL_SM_FBOX_HDR(dst), 0xff, ep->fbox_out.seq++,
buffer_free - sizeof(mca_btl_sm_fbox_hdr_t));
end = MCA_BTL_SM_FBOX_ALIGNMENT;
/* toggle the high bit */
hbs = !hbs;
/* toggle the high bit match */
buffer_free = BUFFER_FREE(start, end, !hbm, fbox_size);
dst = ep->fbox_out.buffer + end;
}
if (OPAL_UNLIKELY(buffer_free < size)) {
ep->fbox_out.end = (hbs << 31) | end;
opal_atomic_wmb();
OPAL_THREAD_UNLOCK(&ep->lock);
return false;
}
}
BTL_VERBOSE(("writing fragment of size %u to offset %u {start: 0x%x, end: 0x%x (hbs: %d)} of "
"peer's buffer. free = %u",
(unsigned int) size, end, start, end, hbs, buffer_free));
data = dst + sizeof(mca_btl_sm_fbox_hdr_t);
memcpy(data, header, header_size);
if (payload) {
/* inline sends are typically just pml headers (due to MCA_BTL_FLAGS_SEND_INPLACE) */
memcpy(data + header_size, payload, payload_size);
}
end += size;
if (OPAL_UNLIKELY(fbox_size == end)) {
/* toggle the high bit */
hbs = !hbs;
/* reset the end pointer to the beginning of the buffer */
end = MCA_BTL_SM_FBOX_ALIGNMENT;
} else if (buffer_free > size) {
MCA_BTL_SM_FBOX_HDR(ep->fbox_out.buffer + end)->ival = 0;
}
/* write out part of the header now. the tag will be written when the data is available */
mca_btl_sm_fbox_set_header(MCA_BTL_SM_FBOX_HDR(dst), tag, ep->fbox_out.seq++, data_size);
/* align the buffer */
ep->fbox_out.end = ((uint32_t) hbs << 31) | end;
opal_atomic_wmb();
OPAL_THREAD_UNLOCK(&ep->lock);
return true;
}
static inline bool mca_btl_sm_check_fboxes(void)
{
const unsigned int fbox_size = mca_btl_sm_component.fbox_size;
bool processed = false;
for (unsigned int i = 0; i < mca_btl_sm_component.num_fbox_in_endpoints; ++i) {
mca_btl_base_endpoint_t *ep = mca_btl_sm_component.fbox_in_endpoints[i];
unsigned int start = ep->fbox_in.start & MCA_BTL_SM_FBOX_OFFSET_MASK;
/* save the current high bit state */
bool hbs = MCA_BTL_SM_FBOX_OFFSET_HBS(ep->fbox_in.start);
int poll_count;
for (poll_count = 0; poll_count <= MCA_BTL_SM_POLL_COUNT; ++poll_count) {
const mca_btl_sm_fbox_hdr_t hdr = mca_btl_sm_fbox_read_header(
MCA_BTL_SM_FBOX_HDR(ep->fbox_in.buffer + start));
/* check for a valid tag a sequence number */
if (0 == hdr.data.tag || hdr.data.seq != ep->fbox_in.seq) {
break;
}
++ep->fbox_in.seq;
/* force all prior reads to complete before continuing */
opal_atomic_rmb();
BTL_VERBOSE(
("got frag from %d with header {.tag = %d, .size = %d, .seq = %u} from offset %u",
ep->peer_smp_rank, hdr.data.tag, hdr.data.size, hdr.data.seq, start));
/* the 0xff tag indicates we should skip the rest of the buffer */
if (OPAL_LIKELY((0xfe & hdr.data.tag) != 0xfe)) {
mca_btl_base_segment_t segment;
const mca_btl_active_message_callback_t *reg = mca_btl_base_active_message_trigger
+ hdr.data.tag;
mca_btl_base_receive_descriptor_t desc = {.endpoint = ep,
.des_segments = &segment,
.des_segment_count = 1,
.tag = hdr.data.tag,
.cbdata = reg->cbdata};
/* fragment fits entirely in the remaining buffer space. some
* btl users do not handle fragmented data so we can't split
* the fragment without introducing another copy here. this
* limitation has not appeared to cause any performance
* degradation. */
segment.seg_len = hdr.data.size;
segment.seg_addr.pval = (void *) (ep->fbox_in.buffer + start + sizeof(hdr));
/* call the registered callback function */
reg->cbfunc(&mca_btl_sm.super, &desc);
} else if (OPAL_LIKELY(0xfe == hdr.data.tag)) {
/* process fragment header */
fifo_value_t *value = (fifo_value_t *) (ep->fbox_in.buffer + start + sizeof(hdr));
mca_btl_sm_hdr_t *sm_hdr = relative2virtual(*value);
mca_btl_sm_poll_handle_frag(sm_hdr, ep);
}
start = (start + hdr.data.size + sizeof(hdr) + MCA_BTL_SM_FBOX_ALIGNMENT_MASK)
& ~MCA_BTL_SM_FBOX_ALIGNMENT_MASK;
if (OPAL_UNLIKELY(fbox_size == start)) {
/* jump to the beginning of the buffer */
start = MCA_BTL_SM_FBOX_ALIGNMENT;
/* toggle the high bit */
hbs = !hbs;
}
}
if (poll_count) {
BTL_VERBOSE(("left off at offset %u (hbs: %d)", start, hbs));
/* save where we left off */
/* let the sender know where we stopped */
opal_atomic_mb();
ep->fbox_in.start = ep->fbox_in.startp[0] = ((uint32_t) hbs << 31) | start;
processed = true;
}
}
/* return the number of fragments processed */
return processed;
}
static inline void mca_btl_sm_try_fbox_setup(mca_btl_base_endpoint_t *ep, mca_btl_sm_hdr_t *hdr)
{
if (OPAL_UNLIKELY(NULL == ep->fbox_out.buffer
&& mca_btl_sm_component.fbox_threshold
== OPAL_THREAD_ADD_FETCH_SIZE_T(&ep->send_count, 1))) {
/* protect access to mca_btl_sm_component.segment_offset */
OPAL_THREAD_LOCK(&mca_btl_sm_component.lock);
/* verify the remote side will accept another fbox */
if (0 <= opal_atomic_add_fetch_32(&ep->fifo->fbox_available, -1)) {
opal_free_list_item_t *fbox = opal_free_list_get(&mca_btl_sm_component.sm_fboxes);
if (NULL != fbox) {
/* zero out the fast box */
memset(fbox->ptr, 0, mca_btl_sm_component.fbox_size);
mca_btl_sm_endpoint_setup_fbox_send(ep, fbox);
hdr->flags |= MCA_BTL_SM_FLAG_SETUP_FBOX;
hdr->fbox_base = virtual2relative((char *) ep->fbox_out.buffer);
} else {
opal_atomic_add_fetch_32(&ep->fifo->fbox_available, 1);
}
opal_atomic_wmb();
}
OPAL_THREAD_UNLOCK(&mca_btl_sm_component.lock);
}
}
#endif /* MCA_BTL_SM_FBOX_H */
|