Skip to content

Commit 63d6b18

Browse files
committed
Remove posix option as it has changed in hdf5 api
1 parent 9225a0e commit 63d6b18

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tools/h5tools.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -487,15 +487,15 @@ h5tools_get_fapl(hid_t fapl, const char *driver, unsigned *drivernum)
487487
else if (!strcmp(driver, drivernames[MPIPOSIX_IDX])) {
488488
/* MPI-I/O Driver */
489489
/* check if MPI has been initialized. */
490-
if(!h5tools_mpi_init_g)
491-
MPI_Initialized(&h5tools_mpi_init_g);
492-
if(h5tools_mpi_init_g) {
493-
if(H5Pset_fapl_mpiposix(new_fapl, MPI_COMM_WORLD, TRUE) < 0)
494-
goto error;
495-
496-
if(drivernum)
497-
*drivernum = MPIPOSIX_IDX;
498-
} /* end if */
490+
// if(!h5tools_mpi_init_g)
491+
// MPI_Initialized(&h5tools_mpi_init_g);
492+
// if(h5tools_mpi_init_g) {
493+
// if(H5Pset_fapl_mpiposix(new_fapl, MPI_COMM_WORLD, TRUE) < 0)
494+
// goto error;
495+
496+
// if(drivernum)
497+
// *drivernum = MPIPOSIX_IDX;
498+
// } /* end if */
499499
#endif /* H5_HAVE_PARALLEL */
500500
}
501501
else {

0 commit comments

Comments
 (0)