quantum-espresso/Modules/parallel_include.f90

20 lines
474 B
Fortran

!------------------------------------------------------------------------------!
! SISSA Code Interface -- Carlo Cavazzoni
!------------------------------------------------------------------------------C
MODULE parallel_include
USE kinds
LOGICAL tparallel
#if defined __MPI
!
! Include file for MPI
!
INCLUDE 'mpif.h'
DATA tparallel /.true./
#else
DATA tparallel /.false./
#endif
END MODULE parallel_include