Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tvegas1 committed May 14, 2024
1 parent e399820 commit ab305c4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/ucx_uct_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,11 +309,8 @@ static uct_iface_h nccl_uct_resource_iface_open(uct_worker_h worker,

status = uct_iface_open(md, worker, &params, config, &iface);
uct_config_release(config);
if (status != UCS_OK) {
WARN("Failed to open iface %s/%s: error %d", tl->tl_name, tl->dev_name,
status);
return NULL;
}
UCXCHECK(status, return NULL, "open UCT iface %s/%s",
tl->tl_name, tl->dev_name);

uct_iface_progress_enable(iface, UCT_PROGRESS_SEND | UCT_PROGRESS_RECV);

Expand Down

0 comments on commit ab305c4

Please sign in to comment.