OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_sumax.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/.
23C
24!||====================================================================
25!|| spmd_sumax ../engine/source/mpi/generic/spmd_sumax.F
26!||--- calls -----------------------------------------------------
27!||--- uses -----------------------------------------------------
28!|| spmd_comm_world_mod ../engine/source/mpi/spmd_comm_world.F90
29!||====================================================================
30 SUBROUTINE spmd_sumax(V,LEN1,LEN)
31C gather tableau V de taille LEN de type my_real
32C max des valeurs absolues sur LEN1
33C somme des valeurs sur LEN2 = LEN - LEN1
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 LEN,LEN1
53 . v(len)
54C-----------------------------------------------
55C L o c a l V a r i a b l e s
56C-----------------------------------------------
57#ifdef MPI
58 INTEGER MSGOFF,MSGTYP,I,K
59 DATA msgoff/107/
60 INTEGER STATUS(MPI_STATUS_SIZE),IERROR
62 . vtmp(len)
63C-----------------------------------------------
64C S o u r c e L i n e s
65C-----------------------------------------------
66 IF (ispmd/=0) THEN
67 msgtyp=msgoff
68 CALL mpi_send(v,len,real,it_spmd(1),msgtyp,
69 . spmd_comm_world,ierror)
70 ELSE
71 DO k=2,nspmd
72 msgtyp=msgoff
73 CALL mpi_recv(vtmp,len,real,it_spmd(k),msgtyp,
74 . spmd_comm_world,status,ierror)
75 DO i=1,len1
76 IF(abs(v(i))<abs(vtmp(i))) THEN
77 v(i) = vtmp(i)
78 ENDIF
79 ENDDO
80C
81 DO i=len1+1,len
82 v(i) = v(i)+vtmp(i)
83 ENDDO
84 ENDDO
85 ENDIF
86C
87#endif
88 RETURN
89 END
#define my_real
Definition cppsort.cpp:32
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_sumax(v, len1, len)
Definition spmd_sumax.F:31