Skip to content

Commit a50519c

Browse files
committed
coll/han/alltoallv: Correct swapped send/recv datatype
1 parent 98a77d6 commit a50519c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/coll/han/coll_han_alltoallv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,8 +787,8 @@ int mca_coll_han_alltoallv_using_smsc(
787787
peers[jrank].counts = (struct peer_counts *)serialization_buf;
788788
peers[jrank].sbuf = sbuf;
789789
peers[jrank].rbuf = rbuf;
790-
peers[jrank].recvtype = &sdtype->super;
791-
peers[jrank].sendtype = &rdtype->super;
790+
peers[jrank].recvtype = &rdtype->super;
791+
peers[jrank].sendtype = &sdtype->super;
792792
peers[jrank].map_ctx[0] = NULL;
793793
peers[jrank].map_ctx[1] = NULL;
794794
peers[jrank].map_ctx[2] = NULL;

0 commit comments

Comments
 (0)