[mpich] MPICH primary repository branch, master, updated. v3.2a2-119-g31628e6
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 31628e6d2ac43f3dded92df936788eafc5cda3bf (commit) from afb720d01390fe76299f9a9a90a949316af70ec1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/31628e6d2ac43f3dded92df936788eafc5... commit 31628e6d2ac43f3dded92df936788eafc5cda3bf Author: Ken Raffenetti <[email protected]> Date: Mon Jan 26 17:06:52 2015 -0600 correct tag usage in MPIC_Sendrecv The tag for send was ignored and recvtag incorrectly used in its place. Signed-off-by: Wesley Bland <[email protected]> diff --git a/src/mpi/coll/helper_fns.c b/src/mpi/coll/helper_fns.c index d0c2e95..4ea6202 100644 --- a/src/mpi/coll/helper_fns.c +++ b/src/mpi/coll/helper_fns.c @@ -461,7 +461,7 @@ int MPIC_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, mpi_errno = MPID_Irecv(recvbuf, recvcount, recvtype, source, recvtag, comm_ptr, context_id, &recv_req_ptr); if (mpi_errno) MPIU_ERR_POP(mpi_errno); - mpi_errno = MPID_Isend(sendbuf, sendcount, sendtype, dest, recvtag, + mpi_errno = MPID_Isend(sendbuf, sendcount, sendtype, dest, sendtag, comm_ptr, context_id, &send_req_ptr); if (mpi_errno) MPIU_ERR_POP(mpi_errno); ----------------------------------------------------------------------- Summary of changes: src/mpi/coll/helper_fns.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org