diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-08-11 17:24:42 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-08-11 17:24:42 (GMT) |
commit | bd19d3c8b18dcd37f8a198a746c98c0da9ab8d0b (patch) | |
tree | a169dbcc31fd4681a3d41698f2c7f69af0a5517b /config | |
parent | 5edaf42d362c2bb8188db8e5840d0b25188ae1b7 (diff) | |
download | hdf5-bd19d3c8b18dcd37f8a198a746c98c0da9ab8d0b.zip hdf5-bd19d3c8b18dcd37f8a198a746c98c0da9ab8d0b.tar.gz hdf5-bd19d3c8b18dcd37f8a198a746c98c0da9ab8d0b.tar.bz2 |
[svn-r9064] Purpose:
Improvement and fix.
Description:
Improvement: allow user defined RUNSERIAL and RUNPARALLEL settings.
Added hdf5_cv_gettimeofday_tz cached value.
Platforms tested:
Janus (Tflops).
Diffstat (limited to 'config')
-rw-r--r-- | config/intel-osf1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1 index 02027bd..535081e 100644 --- a/config/intel-osf1 +++ b/config/intel-osf1 @@ -24,8 +24,10 @@ RANLIB=: LIBS="$LIBS -lnoop_stubs" # How to run serial and parallel test programs -RUNSERIAL="yod -sz 1" -RUNPARALLEL="yod -sz 8" +# Default parallel tests can fit within 1 processor in -proc 3 mode. +# You may want to use -proc 3 to use fewer physical nodes. +RUNSERIAL=${RUNSERIAL:-"yod -sz 1"} +RUNPARALLEL=${RUNPARALLEL:-"yod -sz 8"} # CFLAGS must be set else configure set it to -g CFLAGS="$CFLAGS" @@ -148,3 +150,5 @@ hdf5_cv_system_scope_threads=${hdf5_cv_system_scope_threads="no"} # Hard set MPI_File_set_size() working for files over 2GB to no hdf5_cv_mpi_file_set_size_big=${hdf5_cv_mpi_file_set_size_big='no'} +# Set gettimeofday_tz to yes. +hdf5_cv_gettimeofday_tz=${hdf5_cv_gettimeofday_tz='yes'} |