mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r6806] Purpose:
Bug Fix Description: When I changed the H5P{set,get}_fapl_mpiposix functions to accept another parameter, I didn't change it in these files. Solution: Added the new "use_gpfs" parameter. Platforms tested: Modi4 (only affects the parallel stuff, so no need for full testing). Misc. update:
This commit is contained in:
parent
3e982207dd
commit
52ebd22217
@ -76,8 +76,9 @@ static hid_t create_fcpl(void)
|
||||
/* Create & initialize file access property list with appropriate properties */
|
||||
static hid_t create_fapl(MPI_Comm comm, MPI_Info info, int acc_type )
|
||||
{
|
||||
hid_t fapl; /* File access property list */
|
||||
herr_t ret; /* Generic return value */
|
||||
hid_t fapl; /* File access property list */
|
||||
hbool_t use_gpfs = FALSE; /* Use GPFS hints */
|
||||
herr_t ret; /* Generic return value */
|
||||
|
||||
fapl = H5Pcreate (H5P_FILE_ACCESS);
|
||||
assert(fapl>0);
|
||||
@ -90,7 +91,7 @@ static hid_t create_fapl(MPI_Comm comm, MPI_Info info, int acc_type )
|
||||
|
||||
/* set parallel access with communicator, using MPI-posix driver */
|
||||
if (acc_type == FACC_MPIPOSIX) {
|
||||
ret = H5Pset_fapl_mpiposix(fapl, comm);
|
||||
ret = H5Pset_fapl_mpiposix(fapl, comm, use_gpfs);
|
||||
assert(ret>=0);
|
||||
} /* end if */
|
||||
|
||||
|
@ -1455,7 +1455,8 @@ do_fopen(parameters *param, char *fname, file_descr *fd /*out*/, int flags)
|
||||
{
|
||||
int ret_code = SUCCESS, mrc;
|
||||
herr_t hrc;
|
||||
hid_t acc_tpl = -1; /* file access templates */
|
||||
hid_t acc_tpl = -1; /* file access templates */
|
||||
hbool_t use_gpfs = FALSE; /* use GPFS hints */
|
||||
|
||||
switch (param->io_type) {
|
||||
case POSIXIO:
|
||||
@ -1523,7 +1524,7 @@ do_fopen(parameters *param, char *fname, file_descr *fd /*out*/, int flags)
|
||||
/* Use the appropriate VFL driver */
|
||||
if(param->h5_use_mpi_posix) {
|
||||
/* Set the file driver to the MPI-posix driver */
|
||||
hrc = H5Pset_fapl_mpiposix(acc_tpl, pio_comm_g);
|
||||
hrc = H5Pset_fapl_mpiposix(acc_tpl, pio_comm_g, use_gpfs);
|
||||
if (hrc < 0) {
|
||||
fprintf(stderr, "HDF5 Property List Set failed\n");
|
||||
GOTOERROR(FAIL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user