MPI_Bcast_Int_5 Subroutine

subroutine MPI_Bcast_Int_5(comm, data, root)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: comm
integer, intent(in) :: data(:,:,:,:,:)
integer, intent(in), optional :: root

Calls

proc~~mpi_bcast_int_5~~CallsGraph proc~mpi_bcast_int_5 MPI_Bcast_Int_5 error_mpi error_mpi proc~mpi_bcast_int_5->error_mpi mpi_bcast mpi_bcast proc~mpi_bcast_int_5->mpi_bcast

Source Code

subroutine MPI_Bcast_Int_5(comm,data,root)
  integer,intent(in)          :: comm
  integer,intent(in)          :: data(:,:,:,:,:)
  integer,intent(in),optional :: root
  rank=0;if(present(root))rank=root
  if(comm==MPI_COMM_NULL)return
  call MPI_BCAST(data,size(data),MPI_INTEGER,rank,comm,ierr)
  call Error_MPI(sub='MPI_Bcast_Int_5')
end subroutine MPI_Bcast_Int_5