comms_recv_logical Subroutine

private subroutine comms_recv_logical(array, size, from)

Receive logical array from specified node

Arguments

Type IntentOptional AttributesName
logical, intent(inout) :: array
integer, intent(in) :: size
integer, intent(in) :: from

Called by

proc~~comms_recv_logical~~CalledByGraph proc~comms_recv_logical comms_recv_logical interface~comms_recv comms_recv interface~comms_recv->proc~comms_recv_logical

Contents

Source Code


Source Code

  subroutine comms_recv_logical(array, size, from)
    !! Receive logical array from specified node
    implicit none

    logical, intent(inout) :: array
    integer, intent(in)    :: size
    integer, intent(in)    :: from

#ifdef MPI
    integer :: error
    integer :: status(MPI_status_size)

    call MPI_recv(array, size, MPI_logical, from, &
                  mpi_send_tag, mpi_comm_world, status, error)

    if (error .ne. MPI_success) then
      call io_error('Error in comms_recv_logical')
    end if
#endif

    return

  end subroutine comms_recv_logical