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

Go to the source code of this file.

Functions/Subroutines

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

Function/Subroutine Documentation

◆ spmd_iallgather()

subroutine spmd_iallgather ( 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.F.

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