The Elk Code
 
Loading...
Searching...
No Matches
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
6module modmpi
7
8use mpi
9
10! MPI communicator for main code
11integer mpicom
12! number of MPI processes
13integer np_mpi
14! local MPI process number
15integer lp_mpi
16! mp_mpi is .true. if the local MPI process is the master (0)
17logical mp_mpi
18! commonly used error variable
19integer ierror
20
21end module
22
integer lp_mpi
Definition modmpi.f90:15
integer ierror
Definition modmpi.f90:19
integer mpicom
Definition modmpi.f90:11
integer np_mpi
Definition modmpi.f90:13
logical mp_mpi
Definition modmpi.f90:17