diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-08-20 18:42:05 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-08-20 18:42:05 (GMT) |
commit | 2f680fea22ec9a671e8d1145502499a0d51a4890 (patch) | |
tree | df3e4c9cf3cdbf373c729b6817f31165b6a7b85e /src/H5S.c | |
parent | 82e12143f97fbe9ce09f137004e3118fb745f28e (diff) | |
download | hdf5-2f680fea22ec9a671e8d1145502499a0d51a4890.zip hdf5-2f680fea22ec9a671e8d1145502499a0d51a4890.tar.gz hdf5-2f680fea22ec9a671e8d1145502499a0d51a4890.tar.bz2 |
[svn-r4397] Purpose:
Bug fix
Description:
SAF test code exposed an error in the HDF5_MPI_OPT_TYPES
code. The SAF code was doing collective write to chunked
storage dataset. Some processes wanted to flush some chunk
while some other processes were doing something else but the
HDF5_MPI_OPT_TYPES code thought the chunk flushing were collective
calls since it only looked at the condition when H5Dwrite
was called. So, it hanged when doing MPI_File_setview.
For now, turned off the HDF5_MPI_OPT_TYPES code so that the
SAF code would work. More long term fix later.
Platforms tested:
modi4(pp)
Diffstat (limited to 'src/H5S.c')
-rw-r--r-- | src/H5S.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ static size_t H5S_nconv_g = 0; /*entries used*/ #ifdef H5_HAVE_PARALLEL /* Global var whose value comes from environment variable */ -hbool_t H5_mpi_opt_types_g = TRUE; +hbool_t H5_mpi_opt_types_g = FALSE; #endif /* Declare a free list to manage the H5S_simple_t struct */ |