33
34
35
36 USE spmd_comm_world_mod, ONLY : spmd_comm_world
37#include "implicit_f.inc"
38#include "spmd.inc"
39
40
41
42#include "com01_c.inc"
43#include "com04_c.inc"
44#include "task_c.inc"
45#include "spmd_c.inc"
46
47
48
49 integer
50 . v(*)
51 INTEGER WEIGHT(*),NODGLOB(*),NUM,SRECBUF
52
53
54
55#ifdef MPI
56 INTEGER STATUS(MPI_STATUS_SIZE),,MSGOFF
57 INTEGER SIZ,,I,K,NG,NREC,MSGOFF2
58
59 INTEGER, DIMENSION(:,:) , ALLOCATABLE :: BUFSR
60 INTEGER, DIMENSION(:) , ALLOCATABLE :: XGLOB
61
62 DATA msgoff/7018/
63 DATA msgoff2/7019/
64
65
66
67 ALLOCATE(bufsr(2,numnodm))
68 ALLOCATE(xglob(num))
69
70 IF (ispmd/=0) THEN
71
72 siz = 0
73 DO i=1,numnod
74 IF (weight(i)==1) THEN
75 siz = siz + 1
76 bufsr(1,siz) = nodglob(i)
77 bufsr(2,siz) = v(i)
78 END IF
79 END DO
80
81
82 msgtyp = msgoff
83 CALL mpi_send(bufsr,2*siz,mpi_integer,it_spmd(1),msgtyp,
84 . spmd_comm_world,ierror)
85
86 ELSE
87 DO i=1,numnod
88 IF (weight(i)==1) THEN
89 ng = nodglob(i)
90 xglob(ng) = v(i)
91 ENDIF
92 ENDDO
93
94 DO i=2,nspmd
95
96
97 msgtyp = msgoff
98
100 . spmd_comm_world,status,ierror)
102
103 CALL mpi_recv(bufsr,siz,mpi_integer,it_spmd(i),msgtyp,
104 . spmd_comm_world,status,ierror)
105
106 nrec = siz/2
107
108 DO k = 1, nrec
109 ng = bufsr(1,k)
110 xglob(ng) = bufsr(2,k)
111 ENDDO
112 ENDDO
114
115 ENDIF
116 DEALLOCATE(bufsr)
117 DEALLOCATE(xglob)
118
119#endif
120 RETURN
subroutine mpi_recv(buf, cnt, datatype, source, tag, comm, status, ierr)
subroutine mpi_get_count(status, datatype, cnt, ierr)
subroutine mpi_send(buf, cnt, datatype, dest, tag, comm, ierr)
subroutine mpi_probe(source, tag, comm, status, ierr)
void write_i_c(int *w, int *len)