OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_fxb_cin.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| spmd_fxb_cin ../engine/source/mpi/kinematic_conditions/spmd_fxb_cin.F
25!||--- called by ------------------------------------------------------
26!|| fxbyvit ../engine/source/constraints/fxbody/fxbyvit.F
27!||--- calls -----------------------------------------------------
28!||--- uses -----------------------------------------------------
29!|| spmd_comm_world_mod ../engine/source/mpi/spmd_comm_world.F90
30!||====================================================================
31 SUBROUTINE spmd_fxb_cin(FXBIPM, FXBVIT, FXBACC)
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
103 END
104C
105
#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
subroutine spmd_fxb_cin(fxbipm, fxbvit, fxbacc)