hdf5/fortran/testpar/thdf5.f90
Elena Pourmal c701e8b89f [svn-r3130]
Purpose:
    Maintenance
Description:
    Not all platforms support F90 MPI. I used USE MPI statement, and
    it did not work on T3E (mcurie.nersc.gov)
Solution:
    Use INCLUDE 'MPIF.H' statement instead of USE MPI.
Platforms tested:
    O2K and T3E
2000-12-13 14:21:52 -05:00

12 lines
233 B
Fortran

MODULE THDF5
USE HDF5
include 'mpif.h'
! USE MPI
! Dataset dimensions
INTEGER, PARAMETER :: DIM1 = 64, &
DIM2 = 128
END MODULE THDF5