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

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_crk_idmax (idmax, itab)

Function/Subroutine Documentation

◆ spmd_crk_idmax()

subroutine spmd_crk_idmax ( integer idmax,
integer, dimension(*) itab )

Definition at line 32 of file spmd_crk_idmax.F.

33C-----------------------------------------------
34C I m p l i c i t T y p e s
35C-----------------------------------------------
36 USE spmd_comm_world_mod, ONLY : spmd_comm_world
37#include "implicit_f.inc"
38C-----------------------------------------------------------------
39C M e s s a g e P a s s i n g
40C-----------------------------------------------
41#include "spmd.inc"
42C-----------------------------------------------
43C C o m m o n B l o c k s
44C-----------------------------------------------
45#include "com01_c.inc"
46#include "com04_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 IDMAX,ITAB(*)
52C-----------------------------------------------
53C L o c a l V a r i a b l e s
54C-----------------------------------------------
55#ifdef MPI
56 INTEGER IDMAXL, I, ITAG, MSGOFF, IDMAXP(NSPMD-1),
57 . REQ(NSPMD-1), IERR, STAT(MPI_STATUS_SIZE,NSPMD-1)
58C-----------------------------------------------
59 DATA msgoff/7063/
60C-----------------------------------------------
61 idmaxl=0
62 DO i=1,numnod
63 idmaxl=max(idmaxl,itab(i))
64 ENDDO
65 IF (ispmd==0) THEN
66 DO i=1,nspmd-1
67 itag=msgoff
68 CALL mpi_irecv(idmaxp(i), 1, mpi_integer, it_spmd(i+1),
69 . itag, spmd_comm_world, req(i), ierr)
70 ENDDO
71 CALL mpi_waitall(nspmd-1, req, stat, ierr)
72C
73 idmax=idmaxl
74 DO i=1,nspmd-1
75 idmax=max(idmax,idmaxp(i))
76 ENDDO
77 ELSE
78 itag=msgoff
79 CALL mpi_isend(idmaxl, 1, mpi_integer, it_spmd(1),
80 . itag, spmd_comm_world, req, ierr)
81 CALL mpi_wait(req, stat, ierr)
82 ENDIF
83C
84#endif
85 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