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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2018 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2018 Triad National Security, LLC. All rights
* reserved.
* Copyright (c) 2019 Google, LLC. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "btl_uct_am.h"
#include "btl_uct_device_context.h"
#include "opal/util/argv.h"
#include "opal/util/bit_ops.h"
#if HAVE_DECL_UCT_CB_FLAG_SYNC
# define MCA_BTL_UCT_CB_FLAG_SYNC UCT_CB_FLAG_SYNC
#else
# define MCA_BTL_UCT_CB_FLAG_SYNC 0
#endif
/**
* @brief Convert UCT capabilities to BTL flags
*/
static uint64_t mca_btl_uct_cap_to_btl_flag[][2] = {
{UCT_IFACE_FLAG_AM_SHORT, MCA_BTL_FLAGS_SEND},
{UCT_IFACE_FLAG_PUT_ZCOPY, MCA_BTL_FLAGS_PUT},
{UCT_IFACE_FLAG_GET_ZCOPY, MCA_BTL_FLAGS_GET},
{0, 0},
};
/**
* @brief Convert UCT capability flags to BTL flags
*
* @param[in] cap_flags UCT capability flags
*
* @returns equivalent BTL flags
*/
static int32_t mca_btl_uct_module_flags(uint64_t cap_flags)
{
uint32_t flags = 0;
for (int i = 0; mca_btl_uct_cap_to_btl_flag[i][0] > 0; ++i) {
if (cap_flags & mca_btl_uct_cap_to_btl_flag[i][0]) {
flags |= (uint32_t) mca_btl_uct_cap_to_btl_flag[i][1];
}
}
return flags;
}
#if OPAL_HAVE_UCT_EP_ATOMIC64_POST
/**
* @brief Convert UCT capabilities to BTL atomic flags
*/
static uint64_t mca_btl_uct_cap_to_btl_atomic_flag[][2] = {
{UCS_BIT(UCT_ATOMIC_OP_ADD), MCA_BTL_ATOMIC_SUPPORTS_ADD},
{UCS_BIT(UCT_ATOMIC_OP_AND), MCA_BTL_ATOMIC_SUPPORTS_AND},
{UCS_BIT(UCT_ATOMIC_OP_OR), MCA_BTL_ATOMIC_SUPPORTS_OR},
{UCS_BIT(UCT_ATOMIC_OP_XOR), MCA_BTL_ATOMIC_SUPPORTS_XOR},
{UCS_BIT(UCT_ATOMIC_OP_SWAP), MCA_BTL_ATOMIC_SUPPORTS_SWAP},
{UCS_BIT(UCT_ATOMIC_OP_CSWAP), MCA_BTL_ATOMIC_SUPPORTS_CSWAP},
{
0,
},
};
static void mca_btl_uct_module_set_atomic_flags(mca_btl_uct_module_t *module, mca_btl_uct_tl_t *tl)
{
uint64_t cap_flags = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.flags;
/* NTH: only use the fetching atomics for now */
uint64_t atomic_flags32 = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.atomic32.fop_flags;
uint64_t atomic_flags64 = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.atomic64.fop_flags;
uint64_t all_flags = atomic_flags64 | atomic_flags32;
module->super.btl_atomic_flags = (0 != atomic_flags32) ? MCA_BTL_ATOMIC_SUPPORTS_32BIT : 0;
if (cap_flags & UCT_IFACE_FLAG_ATOMIC_CPU) {
module->super.btl_atomic_flags |= MCA_BTL_ATOMIC_SUPPORTS_GLOB;
}
for (int i = 0; mca_btl_uct_cap_to_btl_atomic_flag[i][0]; ++i) {
if (all_flags & mca_btl_uct_cap_to_btl_atomic_flag[i][0]) {
module->super.btl_atomic_flags |= mca_btl_uct_cap_to_btl_atomic_flag[i][1];
}
}
if (0 != module->super.btl_atomic_flags) {
/* some atomics are supported */
module->super.btl_flags |= MCA_BTL_FLAGS_ATOMIC_FOPS | MCA_BTL_FLAGS_ATOMIC_OPS;
}
}
#else
/**
* @brief Convert UCT capabilities to BTL atomic flags
*/
static uint64_t mca_btl_uct_cap_to_btl_atomic_flag[][2] = {
{UCT_IFACE_FLAG_ATOMIC_ADD64, MCA_BTL_ATOMIC_SUPPORTS_ADD},
{UCT_IFACE_FLAG_ATOMIC_ADD32, MCA_BTL_ATOMIC_SUPPORTS_32BIT},
{UCT_IFACE_FLAG_ATOMIC_CSWAP64, MCA_BTL_ATOMIC_SUPPORTS_CSWAP},
{UCT_IFACE_FLAG_ATOMIC_SWAP64, MCA_BTL_ATOMIC_SUPPORTS_SWAP},
{UCT_IFACE_FLAG_ATOMIC_CPU, MCA_BTL_ATOMIC_SUPPORTS_GLOB},
{
0,
},
};
/**
* @brief Convert UCT capability flags to BTL atomic flags
*
* @param[in] cap_flags UCT capability flags
*
* @returns equivalent BTL atomic flags
*/
static void mca_btl_uct_module_set_atomic_flags(mca_btl_uct_module_t *module, mca_btl_uct_tl_t *tl)
{
uint64_t cap_flags = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.flags;
module->super.btl_atomic_flags = 0;
for (int i = 0; mca_btl_uct_cap_to_btl_atomic_flag[i][0] > 0; ++i) {
if (cap_flags & mca_btl_uct_cap_to_btl_atomic_flag[i][0]) {
module->super.btl_atomic_flags |= (uint32_t) mca_btl_uct_cap_to_btl_atomic_flag[i][1];
}
}
if (0 != module->super.btl_atomic_flags) {
/* some atomics are supported */
module->super.btl_flags |= MCA_BTL_FLAGS_ATOMIC_FOPS | MCA_BTL_FLAGS_ATOMIC_OPS;
}
}
#endif
static void mca_btl_uct_tl_constructor(mca_btl_uct_tl_t *tl)
{
memset((void *) ((uintptr_t) tl + sizeof(tl->super)), 0, sizeof(*tl) - sizeof(tl->super));
OBJ_CONSTRUCT(&tl->tl_lock, opal_mutex_t);
}
static void mca_btl_uct_tl_destructor(mca_btl_uct_tl_t *tl)
{
assert(((opal_object_t *) tl)->obj_reference_count == 0);
for (int context_id = 0; context_id < MCA_BTL_UCT_MAX_WORKERS; ++context_id) {
if (NULL != tl->uct_dev_contexts[context_id]) {
mca_btl_uct_context_destroy(tl->uct_dev_contexts[context_id]);
}
}
if (tl->uct_md) {
OBJ_RELEASE(tl->uct_md);
}
free(tl->uct_dev_contexts);
free(tl->uct_tl_name);
free(tl->uct_dev_name);
if (NULL != tl->uct_tl_config) {
uct_config_release(tl->uct_tl_config);
}
OBJ_DESTRUCT(&tl->tl_lock);
}
OBJ_CLASS_INSTANCE(mca_btl_uct_tl_t, opal_list_item_t, mca_btl_uct_tl_constructor,
mca_btl_uct_tl_destructor);
static ucs_status_t mca_btl_uct_conn_req_cb(void *arg, void *data, size_t length, unsigned flags)
{
mca_btl_uct_module_t *module = (mca_btl_uct_module_t *) arg;
mca_btl_uct_pending_connection_request_t *request = calloc(1, length + sizeof(request->super));
/* it is not safe to process the connection request from the callback so just save it for
* later processing */
OBJ_CONSTRUCT(request, mca_btl_uct_pending_connection_request_t);
memcpy(&request->request_data, (void *) ((intptr_t) data + 8), length);
opal_fifo_push_atomic(&module->pending_connection_reqs, &request->super);
return UCS_OK;
}
OBJ_CLASS_INSTANCE(mca_btl_uct_pending_connection_request_t, opal_list_item_t, NULL, NULL);
int mca_btl_uct_process_connection_request(mca_btl_uct_module_t *module,
mca_btl_uct_conn_req_t *req)
{
struct opal_proc_t *remote_proc = opal_proc_for_name(req->proc_name);
mca_btl_base_endpoint_t *endpoint = mca_btl_uct_get_ep(&module->super, remote_proc);
mca_btl_uct_tl_endpoint_t *tl_endpoint = endpoint->uct_eps[req->context_id] + req->tl_index;
int32_t ep_flags;
int rc;
BTL_VERBOSE(("got connection request for endpoint %p. type = %d. context id = %d",
(void *) endpoint, req->type, req->context_id));
if (NULL == endpoint) {
BTL_ERROR(("could not create endpoint for connection request"));
return UCS_ERR_UNREACHABLE;
}
assert(req->type < 2);
ep_flags = opal_atomic_fetch_or_32(&tl_endpoint->flags, MCA_BTL_UCT_ENDPOINT_FLAG_CONN_REC);
if (!(ep_flags & MCA_BTL_UCT_ENDPOINT_FLAG_CONN_REC)) {
/* create any necessary resources */
rc = mca_btl_uct_endpoint_connect(module, endpoint, req->context_id, req->ep_addr,
req->tl_index);
if (OPAL_SUCCESS != rc && OPAL_ERR_OUT_OF_RESOURCE != rc) {
BTL_ERROR(("could not setup rdma endpoint. rc = %d", rc));
return rc;
}
}
/* the connection is ready once we have received the connection data and also a connection ready
* message. this might be overkill but there is little documentation at the UCT level on when
* an endpoint can be used. */
if (req->type == 1) {
/* remote side is ready */
mca_btl_uct_base_frag_t *frag;
/* to avoid a race with send adding pending frags grab the lock here */
OPAL_THREAD_SCOPED_LOCK(&endpoint->ep_lock, {
BTL_VERBOSE(("connection ready. sending %" PRIsize_t " frags",
opal_list_get_size(&module->pending_frags)));
(void) opal_atomic_or_fetch_32(&tl_endpoint->flags,
MCA_BTL_UCT_ENDPOINT_FLAG_CONN_READY);
opal_atomic_wmb();
OPAL_LIST_FOREACH (frag, &module->pending_frags, mca_btl_uct_base_frag_t) {
if (frag->context->context_id == req->context_id && endpoint == frag->endpoint) {
frag->ready = true;
}
}
});
}
return OPAL_SUCCESS;
}
static int mca_btl_uct_setup_connection_tl(mca_btl_uct_module_t *module)
{
ucs_status_t ucs_status;
if (NULL == module->conn_tl) {
return OPAL_ERR_NOT_SUPPORTED;
}
ucs_status = uct_iface_set_am_handler(module->conn_tl->uct_dev_contexts[0]->uct_iface,
MCA_BTL_UCT_CONNECT_RDMA, mca_btl_uct_conn_req_cb, module,
UCT_CB_FLAG_ASYNC);
if (UCS_OK != ucs_status) {
BTL_ERROR(("could not set active message handler for uct tl"));
}
return UCS_OK == ucs_status ? OPAL_SUCCESS : OPAL_ERROR;
}
static void mca_btl_uct_context_enable_progress(mca_btl_uct_device_context_t *context)
{
if (!context->progress_enabled) {
#if HAVE_DECL_UCT_PROGRESS_THREAD_SAFE
uct_iface_progress_enable(context->uct_iface,
UCT_PROGRESS_THREAD_SAFE | UCT_PROGRESS_SEND | UCT_PROGRESS_RECV);
#else
uct_iface_progress_enable(context->uct_iface, UCT_PROGRESS_SEND | UCT_PROGRESS_RECV);
#endif
context->progress_enabled = true;
}
}
mca_btl_uct_device_context_t *mca_btl_uct_context_create(mca_btl_uct_module_t *module,
mca_btl_uct_tl_t *tl, int context_id,
bool enable_progress)
{
#if UCT_API >= UCT_VERSION(1, 6)
uct_iface_params_t iface_params = {.field_mask = UCT_IFACE_PARAM_FIELD_OPEN_MODE
| UCT_IFACE_PARAM_FIELD_DEVICE,
.open_mode = UCT_IFACE_OPEN_MODE_DEVICE,
.mode = {.device = {.tl_name = tl->uct_tl_name,
.dev_name = tl->uct_dev_name}}};
#else
uct_iface_params_t iface_params = {.rndv_cb = NULL,
.eager_cb = NULL,
.stats_root = NULL,
.rx_headroom = 0,
.open_mode = UCT_IFACE_OPEN_MODE_DEVICE,
.mode = {.device = {.tl_name = tl->uct_tl_name,
.dev_name = tl->uct_dev_name}}};
#endif
mca_btl_uct_device_context_t *context;
ucs_status_t ucs_status;
int rc;
context = calloc(1, sizeof(*context));
if (OPAL_UNLIKELY(NULL == context)) {
return NULL;
}
context->context_id = context_id;
context->uct_btl = module;
OBJ_CONSTRUCT(&context->completion_fifo, opal_fifo_t);
OBJ_CONSTRUCT(&context->mutex, opal_recursive_mutex_t);
OBJ_CONSTRUCT(&context->rdma_completions, opal_free_list_t);
rc = opal_free_list_init(&context->rdma_completions, sizeof(mca_btl_uct_uct_completion_t),
opal_cache_line_size, OBJ_CLASS(mca_btl_uct_uct_completion_t), 0,
opal_cache_line_size, 0, 4096, 128, NULL, 0, NULL, NULL, NULL);
if (OPAL_UNLIKELY(OPAL_SUCCESS != rc)) {
mca_btl_uct_context_destroy(context);
return NULL;
}
/* apparently (in contradiction to the spec) UCT is *not* thread safe. because we have to
* use our own locks just go ahead and use UCS_THREAD_MODE_SINGLE. if they ever fix their
* api then change this back to UCS_THREAD_MODE_MULTI and remove the locks around the
* various UCT calls. */
ucs_status = uct_worker_create(module->ucs_async, UCS_THREAD_MODE_SINGLE, &context->uct_worker);
if (OPAL_UNLIKELY(UCS_OK != ucs_status)) {
BTL_VERBOSE(("could not create a UCT worker"));
mca_btl_uct_context_destroy(context);
return NULL;
}
ucs_status = uct_iface_open(tl->uct_md->uct_md, context->uct_worker, &iface_params,
tl->uct_tl_config, &context->uct_iface);
if (OPAL_UNLIKELY(UCS_OK != ucs_status)) {
BTL_VERBOSE(("could not open UCT interface. error code: %d", ucs_status));
mca_btl_uct_context_destroy(context);
return NULL;
}
/* only need to query one of the interfaces to get the attributes */
ucs_status = uct_iface_query(context->uct_iface, &context->uct_iface_attr);
if (UCS_OK != ucs_status) {
BTL_VERBOSE(("Error querying UCT interface"));
mca_btl_uct_context_destroy(context);
return NULL;
}
if (context_id > 0 && tl == module->am_tl) {
BTL_VERBOSE(("installing AM handler for tl %p context id %d", (void *) tl, context_id));
uct_iface_set_am_handler(context->uct_iface, MCA_BTL_UCT_FRAG, mca_btl_uct_am_handler,
context, MCA_BTL_UCT_CB_FLAG_SYNC);
}
if (enable_progress) {
BTL_VERBOSE(("enabling progress for tl %p context id %d", (void *) tl, context_id));
mca_btl_uct_context_enable_progress(context);
}
return context;
}
void mca_btl_uct_context_destroy(mca_btl_uct_device_context_t *context)
{
if (context->uct_iface) {
uct_iface_close(context->uct_iface);
context->uct_iface = NULL;
}
if (context->uct_worker) {
uct_worker_destroy(context->uct_worker);
context->uct_worker = NULL;
}
OBJ_DESTRUCT(&context->completion_fifo);
OBJ_DESTRUCT(&context->rdma_completions);
free(context);
}
static int tl_compare(opal_list_item_t **a, opal_list_item_t **b)
{
mca_btl_uct_tl_t *tl_a = (mca_btl_uct_tl_t *) *a;
mca_btl_uct_tl_t *tl_b = (mca_btl_uct_tl_t *) *b;
return tl_a->priority - tl_b->priority;
}
static mca_btl_uct_tl_t *mca_btl_uct_create_tl(mca_btl_uct_module_t *module, mca_btl_uct_md_t *md,
uct_tl_resource_desc_t *tl_desc, int priority)
{
mca_btl_uct_tl_t *tl = OBJ_NEW(mca_btl_uct_tl_t);
if (OPAL_UNLIKELY(NULL == tl)) {
return NULL;
}
/* initialize btl tl structure */
tl->uct_md = md;
OBJ_RETAIN(md);
tl->uct_tl_name = strdup(tl_desc->tl_name);
tl->uct_dev_name = strdup(tl_desc->dev_name);
tl->priority = priority;
tl->uct_dev_contexts = calloc(MCA_BTL_UCT_MAX_WORKERS, sizeof(tl->uct_dev_contexts[0]));
if (NULL == tl->uct_dev_contexts) {
OBJ_RELEASE(tl);
return NULL;
}
(void) uct_md_iface_config_read(md->uct_md, tl_desc->tl_name, NULL, NULL, &tl->uct_tl_config);
/* always create a 0 context (needed to query) */
tl->uct_dev_contexts[0] = mca_btl_uct_context_create(module, tl, 0, false);
if (NULL == tl->uct_dev_contexts[0]) {
BTL_VERBOSE(("could not create a uct device context"));
OBJ_RELEASE(tl);
return NULL;
}
BTL_VERBOSE(("Interface CAPS for tl %s::%s: 0x%lx", module->md_name, tl_desc->tl_name,
(unsigned long) MCA_BTL_UCT_TL_ATTR(tl, 0).cap.flags));
return tl;
}
static void mca_btl_uct_set_tl_rdma(mca_btl_uct_module_t *module, mca_btl_uct_tl_t *tl)
{
BTL_VERBOSE(("tl %s is suitable for RDMA", tl->uct_tl_name));
mca_btl_uct_module_set_atomic_flags(module, tl);
module->super.btl_get_limit = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.get.max_zcopy;
if (MCA_BTL_UCT_TL_ATTR(tl, 0).cap.get.max_bcopy) {
module->super.btl_get_alignment = 0;
module->super.btl_get_local_registration_threshold = MCA_BTL_UCT_TL_ATTR(tl, 0)
.cap.get.max_bcopy;
} else {
/* this is overkill in terms of alignment but we have no way to enforce a minimum get size
*/
module->super.btl_get_alignment = opal_next_poweroftwo_inclusive(
MCA_BTL_UCT_TL_ATTR(tl, 0).cap.get.min_zcopy);
}
module->super.btl_put_limit = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.put.max_zcopy;
module->super.btl_put_alignment = 0;
/* no registration needed when using short/bcopy put */
module->super.btl_put_local_registration_threshold = MCA_BTL_UCT_TL_ATTR(tl, 0)
.cap.put.max_bcopy;
module->rdma_tl = tl;
OBJ_RETAIN(tl);
tl->tl_index = (module->am_tl && tl != module->am_tl) ? 1 : 0;
module->comm_tls[tl->tl_index] = tl;
if (tl->max_device_contexts <= 1) {
tl->max_device_contexts = mca_btl_uct_component.num_contexts_per_module;
}
}
static void mca_btl_uct_set_tl_am(mca_btl_uct_module_t *module, mca_btl_uct_tl_t *tl)
{
BTL_VERBOSE(("tl %s is suitable for active-messaging", tl->uct_tl_name));
if (module->rdma_tl == tl) {
module->shared_endpoints = true;
}
module->am_tl = tl;
OBJ_RETAIN(tl);
uct_iface_set_am_handler(tl->uct_dev_contexts[0]->uct_iface, MCA_BTL_UCT_FRAG,
mca_btl_uct_am_handler, tl->uct_dev_contexts[0], UCT_CB_FLAG_ASYNC);
tl->tl_index = (module->rdma_tl && tl != module->rdma_tl) ? 1 : 0;
module->comm_tls[tl->tl_index] = tl;
if (tl->max_device_contexts <= 1) {
tl->max_device_contexts = mca_btl_uct_component.num_contexts_per_module;
}
module->super.btl_eager_limit = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.am.max_bcopy
- sizeof(mca_btl_uct_am_header_t);
if (MCA_BTL_UCT_TL_ATTR(tl, 0).cap.flags & UCT_IFACE_FLAG_AM_ZCOPY) {
module->super.btl_max_send_size = MCA_BTL_UCT_TL_ATTR(tl, 0).cap.am.max_zcopy
- sizeof(mca_btl_uct_am_header_t);
} else {
module->super.btl_max_send_size = module->super.btl_eager_limit;
}
}
static int mca_btl_uct_set_tl_conn(mca_btl_uct_module_t *module, mca_btl_uct_tl_t *tl)
{
int rc;
BTL_VERBOSE(("tl %s is suitable for making connections", tl->uct_tl_name));
module->conn_tl = tl;
rc = mca_btl_uct_setup_connection_tl(module);
if (OPAL_SUCCESS != rc) {
return rc;
}
OBJ_RETAIN(tl);
if (!tl->max_device_contexts) {
/* if a tl is only being used to create connections do not bother with multiple
* contexts */
tl->max_device_contexts = 1;
}
return OPAL_SUCCESS;
}
static int mca_btl_uct_evaluate_tl(mca_btl_uct_module_t *module, mca_btl_uct_tl_t *tl)
{
int rc;
BTL_VERBOSE(("evaluating tl %s", tl->uct_tl_name));
if (NULL == module->rdma_tl && mca_btl_uct_tl_supports_rdma(tl)) {
mca_btl_uct_set_tl_rdma(module, tl);
}
if (NULL == module->am_tl && mca_btl_uct_tl_support_am(tl)) {
mca_btl_uct_set_tl_am(module, tl);
}
if (NULL == module->conn_tl && mca_btl_uct_tl_supports_conn(tl)) {
rc = mca_btl_uct_set_tl_conn(module, tl);
if (OPAL_SUCCESS != rc) {
return rc;
}
}
if (tl == module->rdma_tl || tl == module->am_tl) {
BTL_VERBOSE(("tl has flags 0x%" PRIx64, MCA_BTL_UCT_TL_ATTR(tl, 0).cap.flags));
module->super.btl_flags |= mca_btl_uct_module_flags(MCA_BTL_UCT_TL_ATTR(tl, 0).cap.flags);
/* the bandwidth and latency numbers relate to both rdma and active messages. need to
* come up with a better estimate. */
/* UCT bandwidth is in bytes/sec, BTL is in MB/sec */
#if UCT_API >= UCT_VERSION(1, 7)
module->super.btl_bandwidth = (uint32_t)((MCA_BTL_UCT_TL_ATTR(tl, 0).bandwidth.dedicated
+ MCA_BTL_UCT_TL_ATTR(tl, 0).bandwidth.shared
/ (opal_process_info.num_local_peers + 1))
/ 1048576.0);
#else
module->super.btl_bandwidth = (uint32_t)(MCA_BTL_UCT_TL_ATTR(tl, 0).bandwidth / 1048576.0);
#endif
/* TODO -- figure out how to translate UCT latency to us */
module->super.btl_latency = 1;
}
if (tl == module->rdma_tl || tl == module->am_tl || tl == module->conn_tl) {
/* make sure progress is enabled on the default context now that we know this TL will be
* used */
mca_btl_uct_context_enable_progress(tl->uct_dev_contexts[0]);
}
return OPAL_SUCCESS;
}
int mca_btl_uct_query_tls(mca_btl_uct_module_t *module, mca_btl_uct_md_t *md,
uct_tl_resource_desc_t *tl_descs, unsigned tl_count)
{
bool include = true, any = false;
mca_btl_uct_tl_t *tl;
opal_list_t tl_list;
char **tl_filter;
int any_priority = 0;
OBJ_CONSTRUCT(&tl_list, opal_list_t);
tl_filter = opal_argv_split(mca_btl_uct_component.allowed_transports, ',');
if ('^' == tl_filter[0][0]) {
/* user has negated the include list */
char *tmp = strdup(tl_filter[0] + 1);
free(tl_filter[0]);
tl_filter[0] = tmp;
include = false;
}
/* check for the any keyword */
for (unsigned j = 0; tl_filter[j]; ++j) {
if (0 == strcmp(tl_filter[j], "any")) {
any_priority = j;
any = true;
break;
}
}
if (any && !include) {
opal_argv_free(tl_filter);
return OPAL_ERR_NOT_AVAILABLE;
}
for (unsigned i = 0; i < tl_count; ++i) {
bool try_tl = any;
int priority = any_priority;
for (unsigned j = 0; tl_filter[j]; ++j) {
if (0 == strcmp(tl_filter[j], tl_descs[i].tl_name)) {
try_tl = include;
priority = j;
break;
}
}
BTL_VERBOSE(("tl filter: tl_name = %s, use = %d, priority = %d", tl_descs[i].tl_name,
try_tl, priority));
if (!try_tl) {
continue;
}
if (0 == strcmp(tl_descs[i].tl_name, "ud")) {
/* ud looks like any normal transport but we do not want to use it for anything other
* than connection management so ensure it gets evaluated last */
priority = INT_MAX;
}
tl = mca_btl_uct_create_tl(module, md, tl_descs + i, priority);
if (tl) {
opal_list_append(&tl_list, &tl->super);
}
}
opal_argv_free(tl_filter);
if (0 == opal_list_get_size(&tl_list)) {
BTL_VERBOSE(("no suitable tls match filter: %s", mca_btl_uct_component.allowed_transports));
OBJ_DESTRUCT(&tl_list);
return OPAL_ERR_NOT_AVAILABLE;
}
opal_list_sort(&tl_list, tl_compare);
OPAL_LIST_FOREACH (tl, &tl_list, mca_btl_uct_tl_t) {
mca_btl_uct_evaluate_tl(module, tl);
if (NULL != module->am_tl && NULL != module->rdma_tl
&& (NULL != module->conn_tl
|| !(mca_btl_uct_tl_requires_connection_tl(module->am_tl)
|| mca_btl_uct_tl_requires_connection_tl(module->rdma_tl)))) {
/* all done */
break;
}
}
if (NULL == module->rdma_tl) {
/* no rdma tls */
BTL_VERBOSE(("no rdma tl matched supplied filter. disabling RDMA support"));
module->super.btl_flags &= ~MCA_BTL_FLAGS_RDMA;
module->super.btl_put = NULL;
module->super.btl_get = NULL;
module->super.btl_atomic_fop = NULL;
module->super.btl_atomic_op = NULL;
}
if (NULL == module->am_tl) {
/* no active message tls == no send/recv */
BTL_VERBOSE(("no active message tl matched supplied filter. disabling send/recv support"));
module->super.btl_send = NULL;
module->super.btl_sendi = NULL;
module->super.btl_alloc = NULL;
module->super.btl_free = NULL;
}
OPAL_LIST_DESTRUCT(&tl_list);
if (!(NULL != module->am_tl && mca_btl_uct_tl_requires_connection_tl(module->am_tl))
&& !(NULL != module->rdma_tl && mca_btl_uct_tl_requires_connection_tl(module->rdma_tl))
&& module->conn_tl) {
/* no connection tl needed for selected transports */
OBJ_RELEASE(module->conn_tl);
module->conn_tl = NULL;
} else if (NULL == module->conn_tl) {
BTL_VERBOSE(("a connection tl is required but no tls match the filter %s",
mca_btl_uct_component.allowed_transports));
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
|