diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-03-19 22:31:06 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-03-19 22:31:06 (GMT) |
commit | d178c72f9c976e56e1dc44706d33124bdf86a52d (patch) | |
tree | 674e1388ffd15a5a8b7bfbb3a142e1619c98d132 /INSTALL_parallel | |
parent | 2aefa8a0a4fda831718ba5e2806f404f873a64f7 (diff) | |
download | hdf5-d178c72f9c976e56e1dc44706d33124bdf86a52d.zip hdf5-d178c72f9c976e56e1dc44706d33124bdf86a52d.tar.gz hdf5-d178c72f9c976e56e1dc44706d33124bdf86a52d.tar.bz2 |
[svn-r3663] Purpose:
Improvement
Description:
Changed the default value of $NPROCS from 2 to 3. This is the
value libSAF uses since 3 processes have a much bigger chance
catching parallel errors than just 2 processes.
Platforms tested:
Modi4 (IRIX64) both serial and parallel modes.
Diffstat (limited to 'INSTALL_parallel')
-rw-r--r-- | INSTALL_parallel | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/INSTALL_parallel b/INSTALL_parallel index a1e3a68..9a10d69 100644 --- a/INSTALL_parallel +++ b/INSTALL_parallel @@ -69,7 +69,7 @@ Cray T3E #!/bin/sh -RUNPARALLEL="mpirun -np 2" +RUNPARALLEL="mpirun -np 3" export RUNPARALLEL LIBS="-lmpi" export LIBS @@ -100,7 +100,7 @@ CPPFLAGS=$MPI_INC export CPPFLAGS LDFLAGS=$MPI_LIB export LDFLAGS -RUNPARALLEL="mpirun -np 2" +RUNPARALLEL="mpirun -np 3" export RUNPARALLEL LIBS="-lmpio -lmpi" export LIBS @@ -145,8 +145,8 @@ RUNPARALLEL then configure chooses `mpirun' from the same directory as `mpicc': RUNSERIAL: /usr/local/mpi/bin/mpirun -np 1 - RUNPARALLEL: /usr/local/mpi/bin/mpirun -np $${NPROCS:=2} + RUNPARALLEL: /usr/local/mpi/bin/mpirun -np $${NPROCS:=3} -The `$${NPROCS:=2}' will be substituted with the value of the +The `$${NPROCS:=3}' will be substituted with the value of the NPROCS environment variable at the time `make check' is run -(or the value 2). +(or the value 3). |