summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-06-25 21:17:17 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-06-25 21:17:17 (GMT)
commit5758b63e06b9fc95bf77c0892bf043642c24b20d (patch)
treeaa5c6106661d243f727f4f662b8925e4c4b87776
parente5b8a306cb6b955e07934629b4269d53409ec2cd (diff)
downloadhdf5-5758b63e06b9fc95bf77c0892bf043642c24b20d.zip
hdf5-5758b63e06b9fc95bf77c0892bf043642c24b20d.tar.gz
hdf5-5758b63e06b9fc95bf77c0892bf043642c24b20d.tar.bz2
[svn-r5709] Purpose:
Feature Fix Description: Changed NPROCS to 2 instead of 3.
-rw-r--r--fortran/config/powerpc-ibm-aix4.x2
-rw-r--r--fortran/config/powerpc-ibm-aix5.x2
-rwxr-xr-xfortran/configure4
-rw-r--r--fortran/configure.in4
4 files changed, 6 insertions, 6 deletions
diff --git a/fortran/config/powerpc-ibm-aix4.x b/fortran/config/powerpc-ibm-aix4.x
index 075f451..16ad523 100644
--- a/fortran/config/powerpc-ibm-aix4.x
+++ b/fortran/config/powerpc-ibm-aix4.x
@@ -6,7 +6,7 @@
#
# See BlankForm in this directory for details.
-RUNPARALLEL=${RUNPARALLEL="MP_PROCS=3 MP_TASKS_PER_NODE=3 poe"}
+RUNPARALLEL=${RUNPARALLEL="MP_PROCS=2 MP_TASKS_PER_NODE=2 poe"}
# Cross compiling defaults
ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}
diff --git a/fortran/config/powerpc-ibm-aix5.x b/fortran/config/powerpc-ibm-aix5.x
index 075f451..16ad523 100644
--- a/fortran/config/powerpc-ibm-aix5.x
+++ b/fortran/config/powerpc-ibm-aix5.x
@@ -6,7 +6,7 @@
#
# See BlankForm in this directory for details.
-RUNPARALLEL=${RUNPARALLEL="MP_PROCS=3 MP_TASKS_PER_NODE=3 poe"}
+RUNPARALLEL=${RUNPARALLEL="MP_PROCS=2 MP_TASKS_PER_NODE=2 poe"}
# Cross compiling defaults
ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}
diff --git a/fortran/configure b/fortran/configure
index 334141c..e9edfad 100755
--- a/fortran/configure
+++ b/fortran/configure
@@ -8115,7 +8115,7 @@ echo $ECHO_N "checking for mpirun... $ECHO_C" >&6
echo "${ECHO_T}$path/mpirun" >&6
RUNSERIAL="${RUNSERIAL:-none}"
if test -z "$RUNPARALLEL"; then
- RUNPARALLEL="$path/mpirun -np \$\${NPROCS:=3}"
+ RUNPARALLEL="$path/mpirun -np \$\${NPROCS:=2}"
fi
else
echo "$as_me:$LINENO: result: none" >&5
@@ -8315,7 +8315,7 @@ rm -rf conftest*
fi
if test "X$PARALLEL" = "Xyes" -a -z "$RUNPARALLEL"; then
- RUNPARALLEL="mpirun -np \$\${NPROCS:=3}"
+ RUNPARALLEL="mpirun -np \$\${NPROCS:=2}"
fi
;;
diff --git a/fortran/configure.in b/fortran/configure.in
index 666f9a3..efa143b 100644
--- a/fortran/configure.in
+++ b/fortran/configure.in
@@ -497,7 +497,7 @@ case "$F9X" in
AC_MSG_RESULT($path/mpirun)
RUNSERIAL="${RUNSERIAL:-none}"
if test -z "$RUNPARALLEL"; then
- RUNPARALLEL="$path/mpirun -np \$\${NPROCS:=3}"
+ RUNPARALLEL="$path/mpirun -np \$\${NPROCS:=2}"
fi
else
AC_MSG_RESULT(none)
@@ -560,7 +560,7 @@ case "X-$enable_parallel" in
dnl Set RUNPARALLEL to mpirun if not set yet.
if test "X$PARALLEL" = "Xyes" -a -z "$RUNPARALLEL"; then
- RUNPARALLEL="mpirun -np \$\${NPROCS:=3}"
+ RUNPARALLEL="mpirun -np \$\${NPROCS:=2}"
fi
;;