[mpich] MPICH primary repository branch, master, updated. v3.1.2-148-g3ea5f3d
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 3ea5f3ddd3cc6494b083ddf5fe4707d6fc24e52e (commit) from 9b51441012556210417c6301348e38b32dc3c35e (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/3ea5f3ddd3cc6494b083ddf5fe4707d6fc... commit 3ea5f3ddd3cc6494b083ddf5fe4707d6fc24e52e Author: Rob Latham <[email protected]> Date: Wed Sep 3 16:24:55 2014 -0500 missed c99-style for-loop in earlier commit No Reviewer diff --git a/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_pset.c b/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_pset.c index a18b02a..a94c996 100644 --- a/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_pset.c +++ b/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_pset.c @@ -149,8 +149,8 @@ ADIOI_BG_persInfo_init(ADIOI_BG_ConfInfo_t *conf, torusSize[i] = hw.Size[i]; dimTorus[i] = hw.isTorus[i]; proc->numNodesInPartition *= hw.Size[i]; - int baseNum = 1; - for (int j=0;j<i;j++) + int baseNum = 1, j; + for (j=0;j<i;j++) baseNum *= hw.Size[j]; proc->nodeRank += (hw.Coords[i] * baseNum); #ifdef bridgeringaggtrace ----------------------------------------------------------------------- Summary of changes: src/mpi/romio/adio/ad_gpfs/bg/ad_bg_pset.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org