OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_min_max.F File Reference
#include "implicit_f.inc"
#include "spmd.inc"
#include "task_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_min_max (x1, y1, z1, x2, y2, z2)

Function/Subroutine Documentation

◆ spmd_min_max()

subroutine spmd_min_max ( x1,
y1,
z1,
x2,
y2,
z2 )

Definition at line 31 of file spmd_min_max.F.

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
#define my_real
Definition cppsort.cpp:32
subroutine mpi_allreduce(sendbuf, recvbuf, cnt, datatype, operation, comm, ierr)
Definition mpi.f:103