diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2004-11-15 20:46:59 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2004-11-15 20:46:59 (GMT) |
commit | 539080945ce710fb1f14f4a3c49b149771582579 (patch) | |
tree | d2f22a69ed7a807634936ae124208331ee16c91b /src/H5Dio.c | |
parent | 0eb15cd68f55d7ca01698bba3ac5077e441b2b03 (diff) | |
download | hdf5-539080945ce710fb1f14f4a3c49b149771582579.zip hdf5-539080945ce710fb1f14f4a3c49b149771582579.tar.gz hdf5-539080945ce710fb1f14f4a3c49b149771582579.tar.bz2 |
[svn-r9529] Purpose:
Check in some new fixes for MPI derived datatype routines
Description:
MPI derived datatype algorithm seems working for a simple case;
however, there are still other problems need to be solved. So the
code cannot be used for the time being. Check-in only for debugging.
It won't affect other part of the library.
Solution:
Platforms tested:
Linux 2.4 (heping, serial and parallel)
(Since no new tests were added and changes are mostly restricted to
one fuction, no need to test three platforms).
Misc. update:
Diffstat (limited to 'src/H5Dio.c')
-rw-r--r-- | src/H5Dio.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 0eb0dd7..8e0a4d4 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -3317,17 +3317,22 @@ H5D_ioinfo_init(H5D_t *dset, const H5D_dxpl_cache_t *dxpl_cache, hid_t dxpl_id, /* Indicate that the I/O will _NOT_ be parallel */ #ifdef KYANG + printf("coming to span write \n"); io_info->ops.read = H5D_mpio_spaces_span_read; io_info->ops.write = H5D_mpio_spaces_span_write; + *use_par_opt_io = TRUE; #else *use_par_opt_io=FALSE; + io_info->ops.read = H5D_select_read; + io_info->ops.write = H5D_select_write; #endif -#endif /* H5_HAVE_PARALLEL */ + + + } /* end else */ +#else io_info->ops.read = H5D_select_read; io_info->ops.write = H5D_select_write; -#ifdef H5_HAVE_PARALLEL - } /* end else */ #endif /* H5_HAVE_PARALLEL */ #ifdef H5S_DEBUG |