diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-29 19:32:36 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-29 19:32:36 (GMT) |
commit | 90e269d55269a75fdfab2cc55eb7fafe6d07711a (patch) | |
tree | e66df1882d537ba873f8948bea6f366e06a940f5 /src/H5S.c | |
parent | 03bed9f9ef980530fa7590ef201cb214dab2e6f5 (diff) | |
download | hdf5-90e269d55269a75fdfab2cc55eb7fafe6d07711a.zip hdf5-90e269d55269a75fdfab2cc55eb7fafe6d07711a.tar.gz hdf5-90e269d55269a75fdfab2cc55eb7fafe6d07711a.tar.bz2 |
[svn-r7789] Purpose:
Bug fix & code cleanups
Description:
Change our use of MPI derived datatypes to not create datatypes with
"0-sized" lengths, which causes the LANL Q machine to hang.
Also, get rid of "prefer MPI derived datatypes" environment variable since
it has no advantage.
Platforms tested:
FreeBSD 4.9 (sleipnir) w & w/o parallel
h5committest
Diffstat (limited to 'src/H5S.c')
-rw-r--r-- | src/H5S.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -51,7 +51,6 @@ static size_t H5S_nconv_g = 0; /*entries used*/ #ifdef H5_HAVE_PARALLEL /* Global vars whose value can be set from environment variable also */ hbool_t H5S_mpi_opt_types_g = TRUE; -hbool_t H5S_mpi_prefer_derived_types_g = TRUE; #endif /* H5_HAVE_PARALLEL */ /* Declare a free list to manage the H5S_simple_t struct */ @@ -98,12 +97,6 @@ H5S_init_interface(void) if (s && HDisdigit(*s)) H5S_mpi_opt_types_g = (int)HDstrtol (s, NULL, 0); } - { - /* Prefer MPI derived types for collective data transfers? */ - const char *s = HDgetenv ("HDF5_MPI_PREFER_DERIVED_TYPES"); - if (s && HDisdigit(*s)) - H5S_mpi_prefer_derived_types_g = (int)HDstrtol (s, NULL, 0); - } #endif /* H5_HAVE_PARALLEL */ done: |