summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 8ec2693..0193c1e 100644
--- a/configure.in
+++ b/configure.in
@@ -1220,7 +1220,7 @@ case "$CC_BASENAME" in
AC_MSG_RESULT($path/mpirun)
RUNSERIAL="${RUNSERIAL:-none}"
if test -z "$RUNPARALLEL"; then
- RUNPARALLEL="$path/mpirun -np \$\${NPROCS:=2}"
+ RUNPARALLEL="$path/mpirun -np \$\${NPROCS:=3}"
fi
else
AC_MSG_RESULT(none)
@@ -1255,7 +1255,7 @@ case "$CC_BASENAME" in
AC_MSG_RESULT($path/$cmd);
RUNSERIAL="${RUNSERIAL:-none}"
if test -z "$RUNPARALLEL"; then
- RUNPARALLEL="$path/$cmd -np \$\${NPROCS:=2}"
+ RUNPARALLEL="$path/$cmd -np \$\${NPROCS:=3}"
fi
else
AC_MSG_RESULT(none)
@@ -1311,7 +1311,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:=2}"
+ RUNPARALLEL="mpirun -np \$\${NPROCS:=3}"
fi
;;