mirror of https://gitlab.com/QEF/q-e.git
43 lines
1.3 KiB
Fortran
43 lines
1.3 KiB
Fortran
!
|
|
! Copyright (C) Quantum ESPRESSO group
|
|
!
|
|
! This file is distributed under the terms of the
|
|
! GNU General Public License. See the file `License'
|
|
! in the root directory of the present distribution,
|
|
! or http://www.gnu.org/copyleft/gpl.txt .
|
|
!
|
|
!-----------------------------------------------------
|
|
MODULE xclib_utils_and_para
|
|
!-----------------------------------------------------
|
|
!! MPI stuff and error vars.
|
|
!
|
|
#if defined (__MPI)
|
|
!
|
|
! Include file for MPI
|
|
!
|
|
#if defined (__MPI_MODULE)
|
|
USE mpi
|
|
#else
|
|
INCLUDE 'mpif.h'
|
|
#endif
|
|
#else
|
|
! dummy world and null communicator
|
|
INTEGER, PARAMETER :: MPI_COMM_WORLD = 0
|
|
INTEGER, PARAMETER :: MPI_COMM_NULL = -1
|
|
INTEGER, PARAMETER :: MPI_COMM_SELF = -2
|
|
#endif
|
|
INTEGER, PARAMETER :: stdout = 6
|
|
!! standard output unit
|
|
!
|
|
LOGICAL :: nowarning = .FALSE.
|
|
!! switch for warning messages
|
|
!
|
|
CHARACTER(LEN=35) :: error_msg(5)
|
|
DATA error_msg / 'Bad args. in EXPINT function ', &
|
|
'Series failed in EXPINT function ', &
|
|
'wgga_analy_erfc: not coded Wcx part', &
|
|
'Sorting GGA-AHs failed ', &
|
|
'Sorting vdW-DF-AHs failed ' /
|
|
!
|
|
END MODULE xclib_utils_and_para
|