Skip to content

Commit

Permalink
coll/han/alltoallv: Correct swapped send/recv datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
lrbison committed Sep 18, 2024
1 parent 98a77d6 commit a50519c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ompi/mca/coll/han/coll_han_alltoallv.c
Original file line number Diff line number Diff line change
Expand Up @@ -787,8 +787,8 @@ int mca_coll_han_alltoallv_using_smsc(
peers[jrank].counts = (struct peer_counts *)serialization_buf;
peers[jrank].sbuf = sbuf;
peers[jrank].rbuf = rbuf;
peers[jrank].recvtype = &sdtype->super;
peers[jrank].sendtype = &rdtype->super;
peers[jrank].recvtype = &rdtype->super;
peers[jrank].sendtype = &sdtype->super;
peers[jrank].map_ctx[0] = NULL;
peers[jrank].map_ctx[1] = NULL;
peers[jrank].map_ctx[2] = NULL;
Expand Down

0 comments on commit a50519c

Please sign in to comment.