OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_fxb_cin.F File Reference
#include "implicit_f.inc"
#include "spmd.inc"
#include "com01_c.inc"
#include "com04_c.inc"
#include "task_c.inc"
#include "fxbcom.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_fxb_cin (fxbipm, fxbvit, fxbacc)

Function/Subroutine Documentation

◆ spmd_fxb_cin()

subroutine spmd_fxb_cin ( integer, dimension(nbipm,*) fxbipm,
fxbvit,
fxbacc )

Definition at line 31 of file spmd_fxb_cin.F.

32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35 USE spmd_comm_world_mod, ONLY : spmd_comm_world
36#include "implicit_f.inc"
37C-----------------------------------------------------------------
38C M e s s a g e P a s s i n g
39C-----------------------------------------------
40#include "spmd.inc"
41C-----------------------------------------------
42C C o m m o n B l o c k s
43C-----------------------------------------------
44#include "com01_c.inc"
45#include "com04_c.inc"
46#include "task_c.inc"
47#include "fxbcom.inc"
48C-----------------------------------------------
49C D u m m y A r g u m e n t s
50C-----------------------------------------------
51 INTEGER FXBIPM(NBIPM,*)
53 . fxbvit(*), fxbacc(*)
54C-----------------------------------------------
55C L o c a l V a r i a b l e s
56C-----------------------------------------------
57#ifdef MPI
58 INTEGER NFX, NMOD, NME, LEN, AVAR, PMAIN, II, I, ITAG, MSGOFF,
59 . REQ(NSPMD-1), STAT(MPI_STATUS_SIZE,NSPMD-1), IERR
61 . , DIMENSION(:), ALLOCATABLE :: buf
62C
63 DATA msgoff /198/
64C
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
85C
86 CALL mpi_waitall(nspmd-1, req, stat, ierr)
87 ELSE
88 itag=msgoff
89 CALL mpi_irecv(buf, len, real, it_spmd(pmain+1), itag,
90 . spmd_comm_world, req(1), ierr)
91C
92 CALL mpi_wait(req, stat, ierr)
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
100C
101#endif
102 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine mpi_isend(buf, cnt, datatype, dest, tag, comm, ireq, ierr)
Definition mpi.f:382
subroutine mpi_wait(ireq, status, ierr)
Definition mpi.f:525
subroutine mpi_waitall(cnt, array_of_requests, status, ierr)
Definition mpi.f:536
subroutine mpi_irecv(buf, cnt, datatype, source, tag, comm, ireq, ierr)
Definition mpi.f:372