Skip to content

Commit

Permalink
UCP/WIREUP: Only skip AM lanes for RMA with supported remote addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
tvegas1 committed Jun 4, 2024
1 parent 9cec0d4 commit d7d170a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ucp/wireup/select.c
Original file line number Diff line number Diff line change
Expand Up @@ -1898,7 +1898,8 @@ ucp_wireup_add_rma_bw_lanes(const ucp_wireup_select_params_t *select_params,
* use of fence operations usually don't request the TAG feature, hence the
* check.
*/
if (context->config.features & (UCP_FEATURE_TAG | UCP_FEATURE_AM)) {
if ((select_params->address->dst_version >= 17) &&
(context->config.features & (UCP_FEATURE_TAG | UCP_FEATURE_AM))) {
ucs_carray_for_each(lane_desc, select_ctx->lane_descs,
select_ctx->num_lanes) {
if (!(lane_desc->lane_types & UCS_BIT(UCP_LANE_TYPE_AM))) {
Expand Down

0 comments on commit d7d170a

Please sign in to comment.