OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_igath.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_igath ../engine/source/mpi/anim/spmd_igath.F
25!||--- called by ------------------------------------------------------
26!|| aniskew ../engine/source/output/anim/generate/aniskew.F
27!|| aniskewf ../engine/source/output/anim/generate/aniskewf.F
28!|| dsphnor ../engine/source/output/anim/generate/dsphnor.F
29!||--- calls -----------------------------------------------------
30!||--- uses -----------------------------------------------------
31!|| spmd_comm_world_mod ../engine/source/mpi/spmd_comm_world.f90
32!||====================================================================
33 SUBROUTINE spmd_igath(SRBUF,LEN,LRECV)
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37 USE spmd_comm_world_mod, ONLY : spmd_comm_world
38#include "implicit_f.inc"
39C-----------------------------------------------------------------
40C M e s s a g e P a s s i n g
41C-----------------------------------------------
42#include "spmd.inc"
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46#include "com01_c.inc"
47#include "task_c.inc"
48C-----------------------------------------------
49C D u m m y A r g u m e n t s
50C-----------------------------------------------
51 INTEGER SRBUF(*), LEN, LRECV
52C-----------------------------------------------
53C L o c a l V a r i a b l e s
54C-----------------------------------------------
55#ifdef MPI
56 INTEGER MSGOFF,MSGOFF2,MSGTYP,INFO,I,K,ATID,ATAG,ALEN,RLEN,S1
57 INTEGER STATUS(MPI_STATUS_SIZE),IERROR
58 DATA msgoff/7013/
59 DATA msgoff2/7068/
60C-----------------------------------------------
61C S o u r c e L i n e s
62C-----------------------------------------------
63 s1 = 1
64 IF (ispmd/=0) THEN
65 msgtyp=msgoff2
66
67 CALL mpi_send(len,s1,mpi_integer,
68 . it_spmd(1),msgtyp,
69 . spmd_comm_world,ierror)
70
71 msgtyp=msgoff
72 IF(len > 0 ) THEN
73 CALL mpi_send(srbuf,len,mpi_integer,
74 . it_spmd(1),msgtyp,
75 . spmd_comm_world,ierror)
76 ENDIF
77
78 ELSE
79
80 lrecv = len
81
82 DO i=2,nspmd
83 msgtyp=msgoff2
84 CALL mpi_recv(rlen,s1,mpi_integer,
85 . it_spmd(i),msgtyp,
86 . spmd_comm_world,status,ierror)
87 msgtyp=msgoff
88
89 IF(rlen > 0 ) THEN
90 ! Even though Receive of length = 0 can cost nothing
91 ! SRBUF(LRECV+1) must exist
92 CALL mpi_recv(srbuf(lrecv+1),rlen,mpi_integer,
93 . it_spmd(i),msgtyp,
94 . spmd_comm_world,status,ierror)
95
96 ENDIF
97 lrecv = lrecv + rlen
98
99 END DO
100
101 ENDIF
102C
103#endif
104 RETURN
105 END
subroutine mpi_recv(buf, cnt, datatype, source, tag, comm, status, ierr)
Definition mpi.f:461
subroutine mpi_send(buf, cnt, datatype, dest, tag, comm, ierr)
Definition mpi.f:480
subroutine spmd_igath(srbuf, len, lrecv)
Definition spmd_igath.F:34