Initialize a debug environment for just one process without envoking MPI
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_comm_env_type) | :: | proc |
The process communicator type |
subroutine tem_comm_env_init_empty( proc ) ! --------------------------------------------------------------------------- !> The process communicator type type( tem_comm_env_type ) :: proc ! --------------------------------------------------------------------------- ! Init MPI rank, size and root proc%comm = 0 proc%rank = 0 proc%comm_size = 0 proc%root = 0 proc%isRoot = .false. end subroutine tem_comm_env_init_empty