Skip to content

Commit

Permalink
TL/MLX5: remove unnecessary fence on atomic WQE
Browse files Browse the repository at this point in the history
  • Loading branch information
samnordmann committed Jan 15, 2025
1 parent c226e9f commit 7f9f604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tl/mlx5/alltoall/alltoall_inline.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static inline ucc_status_t send_atomic(ucc_tl_mlx5_alltoall_t *a2a,
struct mlx5dv_qp_ex *qp_dv;

qp_ex = tl_mlx5_get_qp_ex(a2a, rank);
qp_ex->wr_flags = IBV_SEND_FENCE;
qp_ex->wr_flags = 0;
ibv_wr_atomic_fetch_add(qp_ex, rkey, (uintptr_t)remote_addr, 1ULL);
if (a2a->is_dc) {
qp_dv = mlx5dv_qp_ex_from_ibv_qp_ex(qp_ex);
Expand Down

0 comments on commit 7f9f604

Please sign in to comment.