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

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_iallgatherv (sendbuf, recvbuf, send_size, total_rcv_size, rcv_size, displs, request, comm, size_)

Function/Subroutine Documentation

◆ spmd_iallgatherv()

subroutine spmd_iallgatherv ( intent(in) sendbuf,
intent(out) recvbuf,
integer, intent(in) send_size,
integer, intent(in) total_rcv_size,
integer, dimension(size_) rcv_size,
integer, dimension(size_) displs,
integer, intent(in) request,
integer, intent(in) comm,
integer, intent(in) size_ )

Definition at line 29 of file spmd_iallgatherv.F.

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