diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-11-11 18:13:21 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-11-11 18:13:21 (GMT) |
commit | 01530ebaa571bc7c25d28de64a5fd39999825f7a (patch) | |
tree | fab3400e06a76b4c784f47025525d6569da68eea | |
parent | bea08cb3a83b1d0c0b4a9795a6c68df8c68e235b (diff) | |
download | hdf5-01530ebaa571bc7c25d28de64a5fd39999825f7a.zip hdf5-01530ebaa571bc7c25d28de64a5fd39999825f7a.tar.gz hdf5-01530ebaa571bc7c25d28de64a5fd39999825f7a.tar.bz2 |
[svn-r19763] Changed NPROCS default value from 3 to 6.
-rw-r--r-- | config/ia64-linux-gnu | 2 | ||||
-rw-r--r-- | config/ibm-aix | 2 | ||||
-rw-r--r-- | release_docs/INSTALL_parallel | 6 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 3 |
4 files changed, 6 insertions, 7 deletions
diff --git a/config/ia64-linux-gnu b/config/ia64-linux-gnu index 1961119..519d0fc 100644 --- a/config/ia64-linux-gnu +++ b/config/ia64-linux-gnu @@ -32,7 +32,7 @@ fi # Define RUNPARALLEL if parallel mode is enabled or a parallel compiler used. if test "X-$enable_parallel" = "X-yes" -o X-$CC_BASENAME = X-mpicc; then - RUNPARALLEL=${RUNPARALLEL="mpirun -np \$\${NPROCS:=3}"} + RUNPARALLEL=${RUNPARALLEL="mpirun -np \$\${NPROCS:=6}"} fi #---------------------------------------------------------------------------- diff --git a/config/ibm-aix b/config/ibm-aix index 2fb6bc4..3194d11 100644 --- a/config/ibm-aix +++ b/config/ibm-aix @@ -36,7 +36,7 @@ fi # Ask for more memory so that "make check" will pass. Not necessary for -q64 # mode but it does no harm. if test "X-$enable_parallel" = "X-yes" -o X-$CC_BASENAME = X-mpcc_r; then - RUNPARALLEL=${RUNPARALLEL="env MP_PROCS=\$\${NPROCS:=3} MP_TASKS_PER_NODE=\$\${NPROCS:=3} poe"} + RUNPARALLEL=${RUNPARALLEL="env MP_PROCS=\$\${NPROCS:=6} MP_TASKS_PER_NODE=\$\${NPROCS:=6} poe"} RUNSERIAL=${RUNSERIAL="env LDR_CNTRL=MAXDATA=0x20000000@DSA MP_PROCS=1 MP_TASKS_PER_NODE=1 poe"} else RUNSERIAL=${RUNSERIAL="env LDR_CNTRL=MAXDATA=0x20000000@DSA"} diff --git a/release_docs/INSTALL_parallel b/release_docs/INSTALL_parallel index 04643b2..d771c0b 100644 --- a/release_docs/INSTALL_parallel +++ b/release_docs/INSTALL_parallel @@ -232,10 +232,10 @@ compiler is `mpicc' and the user hasn't specified values for RUNSERIAL and RUNPARALLEL then configure chooses `mpiexec' from the same directory as `mpicc': RUNSERIAL: /usr/local/mpi/bin/mpiexec -np 1 - RUNPARALLEL: /usr/local/mpi/bin/mpiexec -np $${NPROCS:=3} + RUNPARALLEL: /usr/local/mpi/bin/mpiexec -np $${NPROCS:=6} -The `$${NPROCS:=3}' will be substituted with the value of the NPROCS -environment variable at the time `make check' is run (or the value 3). +The `$${NPROCS:=6}' will be substituted with the value of the NPROCS +environment variable at the time `make check' is run (or the value 6). 4. Parallel test suite diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index bc0f70f..d7abf6a 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -94,8 +94,7 @@ Bug Fixes since HDF5-1.8.6 Configuration ------------- - - The default number of MPI processes for testing purpose is changed from - 3 to 6. (AKC - 2010/10/28) + - None Library ------- |