Skip to content

Commit

Permalink
fix(h5tools): report error for subfiling vfd if mpi is unavailable
Browse files Browse the repository at this point in the history
close #122
  • Loading branch information
hyoklee committed Nov 22, 2023
1 parent 5baecd6 commit 145c50a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/lib/h5tools.c
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,9 @@ h5tools_set_fapl_vfd(hid_t fapl_id, h5tools_vfd_info_t *vfd_info)
if (H5Pset_fapl_subfiling(fapl_id, (const H5FD_subfiling_config_t *)vfd_info->info) < 0)
H5TOOLS_GOTO_ERROR(FAIL, "H5Pset_fapl_subfiling() failed");
}
else {
H5TOOLS_GOTO_ERROR(FAIL, "MPI is not available for Subfiling VFD");
}
#else
H5TOOLS_GOTO_ERROR(FAIL, "The Subfiling VFD is not enabled");
#endif
Expand Down

0 comments on commit 145c50a

Please sign in to comment.