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

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_fvb_amax (idcmax, idcmaxl)

Function/Subroutine Documentation

◆ spmd_fvb_amax()

subroutine spmd_fvb_amax ( integer idcmax,
integer idcmaxl )

Definition at line 31 of file spmd_fvb_amax.F.

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 "task_c.inc"
46C-----------------------------------------------
47C D u m m y A r g u m e n t s
48C-----------------------------------------------
49 INTEGER IDCMAX, IDCMAXL
50C-----------------------------------------------
51C L o c a l V a r i a b l e s
52C-----------------------------------------------
53#ifdef MPI
54 INTEGER I, ITAG, MSGOFF, IDCMAXP(NSPMD-1), REQ(NSPMD-1),
55 . STAT(MPI_STATUS_SIZE,NSPMD-1), IERR
56C-----------------------------------------------
57 DATA msgoff/7053/
58C-----------------------------------------------
59C
60 IF (ispmd==0) THEN
61 DO i=1,nspmd-1
62 itag=msgoff
63 CALL mpi_irecv(idcmaxp(i), 1, mpi_integer, it_spmd(i+1),
64 . itag, spmd_comm_world, req(i), ierr)
65 ENDDO
66 CALL mpi_waitall(nspmd-1, req, stat, ierr)
67C
68 idcmax=idcmaxl
69 DO i=1,nspmd-1
70 idcmax=max(idcmax,idcmaxp(i))
71 ENDDO
72 ELSE
73 itag=msgoff
74 CALL mpi_isend(idcmaxl, 1, mpi_integer, it_spmd(1),
75 . itag, spmd_comm_world, req, ierr)
76 CALL mpi_wait(req, stat, ierr)
77 ENDIF
78C
79#endif
80 RETURN
#define max(a, b)
Definition macros.h:21
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