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
12 lines
233 B
Fortran
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
|