dlb_reset Subroutine

public subroutine dlb_reset()

Reset the load balancing counter to zero

Must be called collectively by all ranks.

Arguments

None

Calls

proc~~dlb_reset~~CallsGraph proc~dlb_reset dlb_reset proc~comm_leader comm_t%comm_leader proc~dlb_reset->proc~comm_leader proc~win_fence win_t%win_fence proc~dlb_reset->proc~win_fence mpi_win_fence mpi_win_fence proc~win_fence->mpi_win_fence

Source Code

   subroutine dlb_reset()
      call counter_win%fence()
      if (dlb_comm%leader()) then
         counter_ptr(1) = 0_int64
      end if
      call counter_win%fence()
   end subroutine dlb_reset