OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_min_max.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_min_max ../engine/source/mpi/anim/spmd_min_max.F
25!||--- called by ------------------------------------------------------
26!|| scanor ../engine/source/output/anim/generate/scanor.F
27!||--- calls -----------------------------------------------------
28!||--- uses -----------------------------------------------------
29!|| spmd_comm_world_mod ../engine/source/mpi/spmd_comm_world.F90
30!||====================================================================
31 SUBROUTINE spmd_min_max(X1,Y1,Z1,X2,Y2,Z2)
32C spmd_min_max calcule les minimum des reels X1, Y1, Z1 et les
33C maximum des reels X2, Y2, Z2 sur p0
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 "task_c.inc"
47C-----------------------------------------------
48C D u m m y A r g u m e n t s
49C-----------------------------------------------
50C REAL*4 ou REAL*8
52 . x1, y1, z1, x2, y2, z2
53C-----------------------------------------------
54C L o c a l V a r i a b l e s
55C-----------------------------------------------
56#ifdef MPI
57 INTEGER INFO,K,I,ATID,ATAG,ALEN
58C REAL*4 ou REAL*8
60 . tmp(6)
61
62 INTEGER STATUS(MPI_STATUS_SIZE),IERROR
63C REAL*4 ou REAL*8
65 . tmp1(3),tmpo(3)
66C-----------------------------------------------
67C S o u r c e L i n e s
68C-----------------------------------------------
69 tmp1(1) = x1
70 tmp1(2) = y1
71 tmp1(3) = z1
72 call mpi_allreduce(tmp1,tmpo,3,real,
73 . mpi_min,
74 . spmd_comm_world,ierror)
75 x1 = tmpo(1)
76 y1 = tmpo(2)
77 z1 = tmpo(3)
78C
79 tmp1(1)=x2
80 tmp1(2)=y2
81 tmp1(3)=z2
82 call mpi_allreduce(tmp1,tmpo,3,real,
83 . mpi_max,
84 . spmd_comm_world,ierror)
85 x2 = tmpo(1)
86 y2 = tmpo(2)
87 z2 = tmpo(3)
88
89C
90#endif
91 RETURN
92 END
#define my_real
Definition cppsort.cpp:32
subroutine mpi_allreduce(sendbuf, recvbuf, cnt, datatype, operation, comm, ierr)
Definition mpi.f:103
subroutine spmd_min_max(x1, y1, z1, x2, y2, z2)