mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r12401] Purpose:
Some collective chunk IO macro names are confusing, change them to more meaningful names. Description: H5Pset_dxpl_mpio_chunk_opt will set a flag so that the library can do one linked IO or mul ti-chunk IO with collective in chunking storage directly. That is, the library won't do an alyses to determine this. The flags for the enum type we used before are: H5FD_MPIO_OPT_ONE_IO H5FD_MPIO_OPT_MULTI_IO They are not good names because of the following two reasons: 1. It doesn't reflect chunking storage 2. OPT is kind of redundant and misleading, Solution: We change the names to H5FD_MPIO_CHUNK_ONE_IO H5FD_MPIO_CHUNK_MULTI_IO Platforms tested: Since only macro names are changed, no need to test with h5committest. Misc. update:
This commit is contained in:
parent
42ae237370
commit
681d0a964c
@ -642,11 +642,11 @@ coll_chunktest(const char* filename,
|
||||
|
||||
switch(api_option){
|
||||
case API_LINK_HARD:
|
||||
status = H5Pset_dxpl_mpio_chunk_opt(xfer_plist,H5FD_MPIO_OPT_ONE_IO);
|
||||
status = H5Pset_dxpl_mpio_chunk_opt(xfer_plist,H5FD_MPIO_CHUNK_ONE_IO);
|
||||
VRFY((status>= 0),"collective chunk optimization succeeded");
|
||||
break;
|
||||
case API_MULTI_HARD:
|
||||
status = H5Pset_dxpl_mpio_chunk_opt(xfer_plist,H5FD_MPIO_OPT_MULTI_IO);
|
||||
status = H5Pset_dxpl_mpio_chunk_opt(xfer_plist,H5FD_MPIO_CHUNK_MULTI_IO);
|
||||
VRFY((status>= 0),"collective chunk optimization succeeded ");
|
||||
break;
|
||||
case API_LINK_TRUE:
|
||||
|
Loading…
x
Reference in New Issue
Block a user