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 8df06af4810d8266839b36d3d5e43ee25ab9aeeb (commit) from 19d0aa5e04c0552be9bfc642844b96889e975e00 (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/8df06af4810d8266839b36d3d5e43ee25a... commit 8df06af4810d8266839b36d3d5e43ee25ab9aeeb Author: Su Huang <[email protected]> Date: Wed Feb 5 16:41:56 2014 -0500 Change the pamid default for advancing the scheduled NBCs In the pamid layer, mpir_nbc is set to 0 as the default e.g. the scheduled NBC work will not be advanced which would cause the job hang. The NBC would work only if the schedule is advanced. To do so, a user requires to set the environment variable PAMID_MPIR_NBC to 1. With MPICH 3.1 being released and NBC is one of support items in the release, the default for mpir_nbc should be changed from 0 to 1. Signed-off-by: Michael Blocksome <[email protected]> Signed-off-by: Pavan Balaji <[email protected]> diff --git a/src/mpid/pamid/src/mpid_init.c b/src/mpid/pamid/src/mpid_init.c index 3938b67..5a63d44 100644 --- a/src/mpid/pamid/src/mpid_init.c +++ b/src/mpid/pamid/src/mpid_init.c @@ -128,7 +128,7 @@ MPIDI_Process_t MPIDI_Process = { .num_requests = 1, }, - .mpir_nbc = 0, + .mpir_nbc = 1, .numTasks = 0, }; ----------------------------------------------------------------------- Summary of changes: src/mpid/pamid/src/mpid_init.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository