mpi_communicator Derived Type

type, public, bind(c) :: mpi_communicator


Inherited by

type~~mpi_communicator~~InheritedByGraph type~mpi_communicator mpi_communicator type~information information type~information->type~mpi_communicator mpiinfo

Components

Type Visibility Attributes Name Initial
integer(kind=c_int), public :: comm = MPI_COMM_NULL
logical(kind=c_bool), public :: debug_mode = .false.
logical(kind=c_bool), public :: usempi = .false.

Source Code

  type, public, bind(c) :: mpi_communicator
    integer(c_int) :: comm = MPI_COMM_NULL       !< MPI communicator
    logical(c_bool) :: debug_mode = .false.
    logical(c_bool) :: usempi = .false.
  end type mpi_communicator