pic_comm_finalize Subroutine

private subroutine pic_comm_finalize(self)

finalize the MPI library

Type Bound

pic_comm_type

Arguments

Type IntentOptional Attributes Name
class(pic_comm_type), intent(inout) :: self

Calls

proc~~pic_comm_finalize~~CallsGraph proc~pic_comm_finalize pic_comm_type%pic_comm_finalize mpi_finalize mpi_finalize proc~pic_comm_finalize->mpi_finalize

Variables

Type Visibility Attributes Name Initial
integer(kind=int32), private :: ierr

Source Code

   subroutine pic_comm_finalize(self)
    !! finalize the MPI library
      class(pic_comm_type), intent(inout) :: self
      integer(int32) :: ierr
      call MPI_Finalize(ierr)
      self%m_ierr = ierr
   end subroutine pic_comm_finalize