Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/ucp/wireup/select.c
Original file line number Diff line number Diff line change
Expand Up @@ -2483,7 +2483,12 @@ ucp_wireup_add_device_lanes(const ucp_wireup_select_params_t *select_params,
found_lane = ucp_wireup_add_bw_lanes(select_params, &bw_info,
mem_type_tl_bitmap, UCP_NULL_LANE,
select_ctx, 0);
if (!found_lane) {
/*
* Allow self endpoint to skip a device lane, as it might only be used
* for memory type-based copy.
*/
if (!found_lane &&
(select_params->address->uuid != select_params->ep->worker->uuid)) {
ucs_error("could not find device lanes");
return UCS_ERR_UNREACHABLE;
}
Expand Down
Loading