diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2004-11-11 21:00:01 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2004-11-11 21:00:01 (GMT) |
commit | 1702d75b3a49465b184362e088cf120b1b4817f3 (patch) | |
tree | 865452aa5fc02f1cad0b15f8e076c8049e56ad77 /src/H5Dio.c | |
parent | 091fbb49e048b8c89eecff2633068f4508b4d8ac (diff) | |
download | hdf5-1702d75b3a49465b184362e088cf120b1b4817f3.zip hdf5-1702d75b3a49465b184362e088cf120b1b4817f3.tar.gz hdf5-1702d75b3a49465b184362e088cf120b1b4817f3.tar.bz2 |
[svn-r9519] Purpose:
Adding codes for the general MPI derived datatype in order to
better incorporate new fixes of HDF5 library.
Description:
Note: These codes have not been tested for general use.
Don't call these functions in your developments of the HDF5 library.
Also these codes are stand-alone codes, they should not affect
other library codes.
Solution:
Platforms tested:
Heping(C and Parallel linux 2.4, mpich 1.2.6)
Arabica(C,C++,Fortran, Solaris 2.7)
Copper(C,c++,Fortran, AIX 5.1, NOTE: c++ FAILED, seems not due to the recent check-in)
Misc. update:
Diffstat (limited to 'src/H5Dio.c')
-rw-r--r-- | src/H5Dio.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 941801c..0eb0dd7 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -3315,7 +3315,13 @@ H5D_ioinfo_init(H5D_t *dset, const H5D_dxpl_cache_t *dxpl_cache, hid_t dxpl_id, } /* end if */ else { /* Indicate that the I/O will _NOT_ be parallel */ + +#ifdef KYANG + io_info->ops.read = H5D_mpio_spaces_span_read; + io_info->ops.write = H5D_mpio_spaces_span_write; +#else *use_par_opt_io=FALSE; +#endif #endif /* H5_HAVE_PARALLEL */ io_info->ops.read = H5D_select_read; |