32
33
34
35 USE spmd_comm_world_mod, ONLY : spmd_comm_world
36#include "implicit_f.inc"
37
38
39
40#include "spmd.inc"
41
42
43
44#include "com01_c.inc"
45#include "com04_c.inc"
46#include "task_c.inc"
47#include "fxbcom.inc"
48
49
50
51 INTEGER FXBIPM(NBIPM,*)
53 . fxbvit(*), fxbacc(*)
54
55
56
57#ifdef MPI
58 INTEGER NFX, NMOD, , LEN, AVAR, PMAIN, II, I, ITAG, MSGOFF,
59 . REQ(NSPMD-1), STAT(MPI_STATUS_SIZE,NSPMD-1), IERR
61 . , DIMENSION(:), ALLOCATABLE :: buf
62
63 DATA msgoff /198/
64
65 DO nfx=1,nfxbody
66 nmod=fxbipm(4,nfx)
67 nme=fxbipm(17,nfx)
68 len=2*(nme+nmod)
69 avar=fxbipm(13,nfx)
70 pmain=fxbipm(39,nfx)
71 ALLOCATE(buf(len))
72 IF (ispmd==pmain) THEN
73 ii=0
74 DO i=1,nme+nmod
75 buf(i)=fxbvit(i)
76 buf(nme+nmod+i)=fxbacc(i)
77 ENDDO
78 DO i=1,nspmd
79 IF (ispmd==i-1) cycle
80 ii=ii+1
81 itag=msgoff
82 CALL mpi_isend(buf, len, real, it_spmd(i), itag,
83 . spmd_comm_world, req(ii), ierr)
84 ENDDO
85
87 ELSE
88 itag=msgoff
89 CALL mpi_irecv(buf, len, real, it_spmd(pmain+1), itag,
90 . spmd_comm_world, req(1), ierr)
91
93 DO i=1,nme+nmod
94 fxbvit(i)=buf(i)
95 fxbacc(i)=buf(nme+nmod+i)
96 ENDDO
97 ENDIF
98 DEALLOCATE(buf)
99 ENDDO
100
101#endif
102 RETURN
subroutine mpi_isend(buf, cnt, datatype, dest, tag, comm, ireq, ierr)
subroutine mpi_wait(ireq, status, ierr)
subroutine mpi_waitall(cnt, array_of_requests, status, ierr)
subroutine mpi_irecv(buf, cnt, datatype, source, tag, comm, ireq, ierr)