allreduce_dp Subroutine

private subroutine allreduce_dp(comm, buffer, op)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=dp), intent(inout) :: buffer
integer, intent(in), optional :: op

Calls

proc~~allreduce_dp~2~~CallsGraph proc~allreduce_dp~2 allreduce_dp mpi_allreduce mpi_allreduce proc~allreduce_dp~2->mpi_allreduce proc~comm_get~2 comm_t%comm_get proc~allreduce_dp~2->proc~comm_get~2

Called by

proc~~allreduce_dp~2~~CalledByGraph proc~allreduce_dp~2 allreduce_dp interface~allreduce~2 allreduce interface~allreduce~2->proc~allreduce_dp~2

Variables

Type Visibility Attributes Name Initial
integer, private :: ierr
integer, private :: mpi_op

Source Code

   subroutine allreduce_dp(comm, buffer, op)
      type(comm_t), intent(in) :: comm
      real(dp), intent(inout) :: buffer
      integer, intent(in), optional :: op
      integer :: mpi_op
      integer :: ierr

      if (present(op)) then
         mpi_op = op
      else
         mpi_op = MPI_SUM
      end if

      call MPI_Allreduce(MPI_IN_PLACE, buffer, 1_int32, MPI_DOUBLE_PRECISION, &
                         mpi_op, comm%get(), ierr)
   end subroutine allreduce_dp