The Elk Code
modmpi.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross.
3 ! This file is distributed under the terms of the GNU General Public License.
4 ! See the file COPYING for license details.
5 
6 module modmpi
7 
8 use mpi
9 
10 ! MPI communicator for main code
11 integer mpicom
12 ! number of MPI processes
13 integer np_mpi
14 ! local MPI process number
15 integer lp_mpi
16 ! mp_mpi is .true. if the local MPI process is the master (0)
17 logical mp_mpi
18 ! commonly used error variable
19 integer ierror
20 
21 end module
22 
logical mp_mpi
Definition: modmpi.f90:17
integer np_mpi
Definition: modmpi.f90:13
Definition: modmpi.f90:6
integer lp_mpi
Definition: modmpi.f90:15
integer mpicom
Definition: modmpi.f90:11
integer ierror
Definition: modmpi.f90:19