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/H5Dmpio.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/H5Dmpio.c')
-rw-r--r-- | src/H5Dmpio.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/H5Dmpio.c b/src/H5Dmpio.c index 4dfb17b..61fcd84 100644 --- a/src/H5Dmpio.c +++ b/src/H5Dmpio.c @@ -390,7 +390,7 @@ H5D_mpio_spaces_span_xfer(H5D_io_info_t *io_info, size_t elmt_size, int mpi_code; /* MPI return code */ herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI_NOINIT(H5D_mpio_spaces_xfer); + FUNC_ENTER_NOAPI_NOINIT(H5D_mpio_spaces_span_xfer); /* Check args */ assert (io_info); @@ -402,6 +402,7 @@ H5D_mpio_spaces_span_xfer(H5D_io_info_t *io_info, size_t elmt_size, /* Make certain we have the correct type of property list */ assert(TRUE==H5P_isa_class(io_info->dxpl_id,H5P_DATASET_XFER)); + printf("coming to span tree xfer \n"); /* create the MPI buffer type */ if (H5S_mpio_space_span_type( mem_space, elmt_size, /* out: */ @@ -579,7 +580,7 @@ H5D_mpio_spaces_span_read(H5D_io_info_t *io_info, { herr_t ret_value; - FUNC_ENTER_NOAPI_NOFUNC(H5D_mpio_spaces_read); + FUNC_ENTER_NOAPI_NOFUNC(H5D_mpio_spaces_span_read); ret_value = H5D_mpio_spaces_span_xfer(io_info, elmt_size, file_space, mem_space, buf, 0/*read*/); @@ -619,12 +620,14 @@ H5D_mpio_spaces_span_write(H5D_io_info_t *io_info, { herr_t ret_value; - FUNC_ENTER_NOAPI_NOFUNC(H5D_mpio_spaces_write); + FUNC_ENTER_NOAPI_NOFUNC(H5D_mpio_spaces_span_write); + printf(" coming to spaces_span_write function\n"); + fflush(stdout); /*OKAY: CAST DISCARDS CONST QUALIFIER*/ ret_value = H5D_mpio_spaces_span_xfer(io_info, elmt_size, file_space, mem_space, (void*)buf, 1/*write*/); FUNC_LEAVE_NOAPI(ret_value); -} /* end H5D_mpio_spaces_write() */ +} /* end H5D_mpio_spaces_span_write() */ #endif /* H5_HAVE_PARALLEL */ |