summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-10-28 17:22:18 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-10-28 17:22:18 (GMT)
commit2c45d801c9dc9c390f797af20a58d2f0740c66d8 (patch)
tree7f1f711d9cc40946c212836a641fd1d048b17246 /configure
parente05528194deb238fa71820c45c425b5953b1b938 (diff)
downloadhdf5-2c45d801c9dc9c390f797af20a58d2f0740c66d8.zip
hdf5-2c45d801c9dc9c390f797af20a58d2f0740c66d8.tar.gz
hdf5-2c45d801c9dc9c390f797af20a58d2f0740c66d8.tar.bz2
[svn-r19695] Changed the default NPROCS from 3 to 6 for MPI tests.
Tested: in jam only since that is that only parallel tests h5committest would have done.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index ed4128f..7b23210 100755
--- a/configure
+++ b/configure
@@ -7303,7 +7303,7 @@ $as_echo "$path/mpiexec" >&6; }
RUNSERIAL="${RUNSERIAL:-none}"
if test -z "$RUNPARALLEL"; then
- RUNPARALLEL="$path/mpiexec -n \$\${NPROCS:=3}"
+ RUNPARALLEL="$path/mpiexec -n \$\${NPROCS:=6}"
fi
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5
@@ -7349,7 +7349,7 @@ $as_echo "$path/mpiexec" >&6; }
RUNSERIAL="${RUNSERIAL:-none}"
if test -z "$RUNPARALLEL"; then
- RUNPARALLEL="$path/mpiexec -n \$\${NPROCS:=2}"
+ RUNPARALLEL="$path/mpiexec -n \$\${NPROCS:=6}"
fi
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5
@@ -25965,14 +25965,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test "X$PARALLEL" = "Xyes" -a -z "$RUNPARALLEL"; then
for path in `echo $PATH | ${TR} ":" " "`; do
if test -x $path/aprun; then
- RUNPARALLEL="aprun -q -n \$\${NPROCS:=3}"
+ RUNPARALLEL="aprun -q -n \$\${NPROCS:=6}"
break;
fi
done
fi
if test "X$PARALLEL" = "Xyes" -a -z "$RUNPARALLEL"; then
- RUNPARALLEL="mpiexec -n \$\${NPROCS:=3}"
+ RUNPARALLEL="mpiexec -n \$\${NPROCS:=6}"
fi
;;