diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-04 20:29:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-04 20:29:41 (GMT) |
commit | 6d3c07598c93db261fabf9523cfd8ad16585be1c (patch) | |
tree | 5478eb7a1d14f68a41e9c185d181ca36bec6c32f /src/H5D.c | |
parent | c719c2d3b876a3ac6f0aec7d776d5aaebf5e1fef (diff) | |
download | hdf5-6d3c07598c93db261fabf9523cfd8ad16585be1c.zip hdf5-6d3c07598c93db261fabf9523cfd8ad16585be1c.tar.gz hdf5-6d3c07598c93db261fabf9523cfd8ad16585be1c.tar.bz2 |
[svn-r9359] Purpose:
Bug fix
Description:
Relax restrictions on parallel I/O to allow compressed, chunked datasets
to be read in parallel (collective access will be degraded to independent
access, but will retrieve the information still).
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Solaris 2.7 (arabica)
IRIX64 6.5 (modi4)
h5committest
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -2537,10 +2537,6 @@ H5D_open_oid(const H5G_entry_t *ent, hid_t dxpl_id) if(H5P_set(plist, H5D_CRT_DATA_PIPELINE_NAME, &pline) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, NULL, "can't set pipeline") - /* If MPI VFD is used, no filter support yet. */ - if(IS_H5FD_MPI(dataset->ent.file) && pline.nused > 0) - HGOTO_ERROR (H5E_DATASET, H5E_UNSUPPORTED, NULL, "Parallel IO does not support filters yet") - /* * Get the raw data layout info. It's actually stored in two locations: * the storage message of the dataset (dataset->storage) and certain |