mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[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
This commit is contained in:
parent
c85098bd45
commit
c701e8b89f
@ -5,7 +5,7 @@
|
||||
|
||||
USE HDF5 ! This module contains all necessary modules
|
||||
USE THDF5
|
||||
USE MPI
|
||||
! USE MPI
|
||||
|
||||
IMPLICIT NONE
|
||||
INTEGER :: error ! Error flags
|
||||
|
@ -1,6 +1,7 @@
|
||||
MODULE THDF5
|
||||
USE HDF5
|
||||
USE MPI
|
||||
include 'mpif.h'
|
||||
! USE MPI
|
||||
|
||||
! Dataset dimensions
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user