diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-07-19 07:48:00 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-07-19 07:48:00 (GMT) |
commit | 7d291d059da6287f769951c4854c566da0b93ce8 (patch) | |
tree | 399e35ea206e86a825fe5fd9069dc5ea7509d75b /fortran/testpar/hyper.f90 | |
parent | 5a3147b660c4e37f6a5cb71f4884e7f7e43a8782 (diff) | |
download | hdf5-7d291d059da6287f769951c4854c566da0b93ce8.zip hdf5-7d291d059da6287f769951c4854c566da0b93ce8.tar.gz hdf5-7d291d059da6287f769951c4854c566da0b93ce8.tar.bz2 |
Parallel Fortran tests now use the MPI module instead of including
mpif.h.
Diffstat (limited to 'fortran/testpar/hyper.f90')
-rw-r--r-- | fortran/testpar/hyper.f90 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fortran/testpar/hyper.f90 b/fortran/testpar/hyper.f90 index 22f641d..c07636f 100644 --- a/fortran/testpar/hyper.f90 +++ b/fortran/testpar/hyper.f90 @@ -18,9 +18,10 @@ SUBROUTINE hyper(length,do_collective,do_chunk, mpi_size, mpi_rank, nerrors) USE HDF5 + USE MPI USE TH5_MISC + IMPLICIT NONE - INCLUDE 'mpif.h' INTEGER, INTENT(in) :: length ! array length LOGICAL, INTENT(in) :: do_collective ! use collective I/O |