Skip to content

Commit

Permalink
corrected type for MPI_*_f2c APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Mar 27, 2024
1 parent 37df217 commit f240cd4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fortran/src/H5Pf.c
Original file line number Diff line number Diff line change
Expand Up @@ -4606,8 +4606,8 @@ h5pset_fapl_mpio_c(hid_t_f *prp_id, void *comm, void *info)
herr_t ret;
MPI_Comm c_comm;
MPI_Info c_info;
c_comm = MPI_Comm_f2c(*((int *)comm));
c_info = MPI_Info_f2c(*((int *)info));
c_comm = MPI_Comm_f2c(*((MPI_Fint *)comm));
c_info = MPI_Info_f2c(*((MPI_Fint *)info));

/*
* Call H5Pset_mpi function.
Expand Down Expand Up @@ -4677,8 +4677,8 @@ h5pset_mpi_params_c(hid_t_f *prp_id, void *comm, void *info)
herr_t ret;
MPI_Comm c_comm;
MPI_Info c_info;
c_comm = MPI_Comm_f2c(*((int *)comm));
c_info = MPI_Info_f2c(*((int *)info));
c_comm = MPI_Comm_f2c(*((MPI_Fint *)comm));
c_info = MPI_Info_f2c(*((MPI_Fint *)info));

/*
* Call H5Pset_mpi_params.
Expand Down
3 changes: 3 additions & 0 deletions release_docs/RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1770,6 +1770,9 @@ Known Problems
implemented: (1) derived type argument passed by value (H5VLff.F90),
and (2) support for REAL with KIND = 2 in intrinsic SPACING used in testing.

Fortran tests HDF5_1_8.F90 and HDF5_F03.F90 will fail with Cray compilers greater than
version 16.0 due to a compiler bug. The latest version verified as failing was version 17.0.

Several tests currently fail on certain platforms:
MPI_TEST-t_bigio fails with spectrum-mpi on ppc64le platforms.

Expand Down

0 comments on commit f240cd4

Please sign in to comment.