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

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_iallgather_int (sendbuf, recvbuf, send_size, total_rcv_size, rcv_size, request, comm)

Function/Subroutine Documentation

◆ spmd_iallgather_int()

subroutine spmd_iallgather_int ( intent(inout) sendbuf,
intent(inout) recvbuf,
integer, intent(inout) send_size,
integer, intent(inout) total_rcv_size,
integer, intent(inout) rcv_size,
integer, intent(inout) request,
integer, intent(inout) comm )

Definition at line 29 of file spmd_iallgather_int.F.

31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------------------------
36C M e s s a g e P a s s i n g
37C-----------------------------------------------
38#include "spmd.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER, INTENT(inout) :: SEND_SIZE,TOTAL_RCV_SIZE
43 INTEGER, INTENT(inout) :: COMM
44 INTEGER, INTENT(inout) :: REQUEST
45 INTEGER, INTENT(inout) :: RCV_SIZE
46 my_real, DIMENSION(SEND_SIZE), INTENT(inout) :: sendbuf
47 my_real, DIMENSION(TOTAL_RCV_SIZE), INTENT(inout) :: recvbuf
48
49#ifdef MPI
50C-----------------------------------------------
51C L o c a l V a r i a b l e s
52C-----------------------------------------------
53 INTEGER :: error
54! ----------------------------------------
55
56! ------------------------------------------
57! processor P(1-->n) :
58! send buffer
59! | s(m) |
60! size = N
61!
62! For all processor :
63! rcv buffer
64! from proc : P(1) P(2) P(n)
65! | s(1) | s(2) | ... | s(n) |
66! size = N N N
67! ------------------------------------------
68
69! PLMPI uses MPI-2.x version : MPI_IALLGATHER was introduced in MPI-3.0 version
70#if _PLMPI
71! ------------------
72 CALL mpi_allgather(sendbuf,send_size,mpi_integer,
73 . recvbuf,rcv_size,mpi_integer,
74 . comm,error)
75! ------------------
76#else
77! ------------------
78 CALL mpi_iallgather(sendbuf,send_size,mpi_integer,
79 . recvbuf,rcv_size,mpi_integer,
80 . comm,request,error)
81! ------------------
82#endif
83#else
84 recvbuf = 0
85#endif
86 RETURN
#define my_real
Definition cppsort.cpp:32