diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2006-03-14 18:29:35 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2006-03-14 18:29:35 (GMT) |
commit | a4c816eb75c20de14a5e557ffd76c33190152ce2 (patch) | |
tree | d486af4248f19dca54b25c525af5e79766a37959 /src/H5FDmpio.h | |
parent | 838e79971076a29aea1fbad1c1b8d218d6da8644 (diff) | |
download | hdf5-a4c816eb75c20de14a5e557ffd76c33190152ce2.zip hdf5-a4c816eb75c20de14a5e557ffd76c33190152ce2.tar.gz hdf5-a4c816eb75c20de14a5e557ffd76c33190152ce2.tar.bz2 |
[svn-r12090] Purpose:
New APIs to add for collective chunk IO
Description:
Three new APIs
H5Pset_dxpl_mpio_chunk_opt_ratio
H5Pset_dxpl_mpio_chunk_opt_num
H5Pset_dxpl_mpio_chunk_opt
for optional optimization choices from users.
Solution:
Haven't added tests yet, won't affect other parts of the library.
Will add tests after urgent investigations of memory leaking problems from NASA Aura team.
Platforms tested:
heping: both parallel and sequential
shanti
Misc. update:
Diffstat (limited to 'src/H5FDmpio.h')
-rw-r--r-- | src/H5FDmpio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h index 912cbd8..d2ddd0e 100644 --- a/src/H5FDmpio.h +++ b/src/H5FDmpio.h @@ -51,6 +51,9 @@ H5_DLL herr_t H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/, MPI_Info *info/*out*/); H5_DLL herr_t H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode); H5_DLL herr_t H5Pget_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t *xfer_mode/*out*/); +H5_DLL herr_t H5Pset_dxpl_mpio_chunk_opt(hid_t dxpl_id, H5FD_mpio_chunk_opt_t opt_mode); +H5_DLL herr_t H5Pset_dxpl_mpio_chunk_opt_num(hid_t dxpl_id, unsigned num_chunk_per_proc); +H5_DLL herr_t H5Pset_dxpl_mpio_chunk_opt_ratio(hid_t dxpl_id, unsigned percent_num_proc_per_chunk); #ifdef __cplusplus } #endif |