-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmpi_bcast_char.f90
27 lines (24 loc) · 1.03 KB
/
mpi_bcast_char.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
SUBROUTINE MPI_BCAST_CHAR(CHARVAR,ICOUNT,IROOT,IERR)
IMPLICIT NONE
!-----------------------------------------------------------------------
INCLUDE 'mpif.h'
!-----------------------------------------------------------------------
! arguments
CHARACTER :: CHARVAR*(*)
INTEGER :: ICOUNT,IERR,IROOT
!-----------------------------------------------------------------------
! Subroutine MPI_BCAST_CHAR
! Purpose: to serve as a "jacket" for passing character variables to
! MPI_BCAST so that MPI_BCAST will be called with only a single
! variable type in a given fortran routine.
! B.T. Draine, Princeton University Observatory, 2004.04.09
! history
! 04.04.09 (BTD) first written
! 08.01.17 (BTD) f90 version
! end history
! Copyright (C) 2004,2008 B.T.Draine and P.J. Flatau
! This code is covered by the GNU General Public License
!-----------------------------------------------------------------------
CALL MPI_BCAST(CHARVAR,ICOUNT,MPI_CHARACTER,IROOT,MPI_COMM_WORLD,IERR)
RETURN
END