[mpich] MPICH primary repository branch, master, updated. v3.0.4-254-g1bbe0ba
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 1bbe0ba39a5c2486b9b73a17e8314d8039b5f92b (commit) from 32dc8c1b689e98ed6a1289b11c81245312fdf761 (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/1bbe0ba39a5c2486b9b73a17e8314d8039... commit 1bbe0ba39a5c2486b9b73a17e8314d8039b5f92b Author: William Gropp <[email protected]> Date: Sat Jun 1 13:54:52 2013 +0800 Correct typo in usage of parameter in bcast This bug was found by the Tianhe-2 software group, and applies only to the device-override path for the MPI_Bcast operation. Because of a missing trailing underscore, the wrong bcast override function could be selected. As our tests don't check the override path, this went undetected. diff --git a/src/mpi/coll/bcast.c b/src/mpi/coll/bcast.c index da83463..261cc78 100644 --- a/src/mpi/coll/bcast.c +++ b/src/mpi/coll/bcast.c @@ -876,7 +876,7 @@ fn_fail: if (comm_ptr_->coll_fns != NULL && comm_ptr_->coll_fns->Bcast != NULL) \ { \ /* --BEGIN USEREXTENSION-- */ \ - mpi_errno_ = comm_ptr->coll_fns->Bcast(buffer_, count_, \ + mpi_errno_ = comm_ptr_->coll_fns->Bcast(buffer_, count_, \ datatype_, root_, comm_ptr_, errflag_); \ /* --END USEREXTENSION-- */ \ } \ ----------------------------------------------------------------------- Summary of changes: src/mpi/coll/bcast.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org