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

Go to the source code of this file.

Functions/Subroutines

subroutine spmd_ialltoall_int (sendbuf, recvbuf, total_send_size, send_size, total_rcv_size, rcv_size, request, comm)

Function/Subroutine Documentation

◆ spmd_ialltoall_int()

subroutine spmd_ialltoall_int ( integer, dimension(total_send_size), intent(inout) sendbuf,
integer, dimension(total_rcv_size), intent(inout) recvbuf,
integer, intent(inout) total_send_size,
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 30 of file spmd_ialltoall_int.F.

32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35#include "implicit_f.inc"
36C-----------------------------------------------------------------
37C M e s s a g e P a s s i n g
38C-----------------------------------------------
39#include "spmd.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_SEND_SIZE
44 INTEGER, INTENT(inout) :: REQUEST
45 INTEGER, INTENT(inout) :: COMM
46 INTEGER, INTENT(inout) :: RCV_SIZE,TOTAL_RCV_SIZE
47 INTEGER, DIMENSION(TOTAL_SEND_SIZE), INTENT(inout) :: SENDBUF
48 INTEGER, 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(m) :
59! send buffer
60! to proc : P(1) P(2) P(n)
61! | s1 | s2 | ... | sn |
62! size = N N N
63!
64! rcv buffer
65! from proc : P(1) P(2) P(n)
66! | r1 | r2 | ... | rn |
67! size = N N N
68! ------------------------------------------
69
70! PLMPI uses MPI-2.x version : MPI_IALLTOALL was introduced in MPI-3.0 version
71#if _PLMPI
72! mpi comm alltoall
73 CALL mpi_alltoall(sendbuf,send_size,mpi_integer,
74 . recvbuf,rcv_size,mpi_integer,
75 . comm,error)
76! ------------------
77#else
78! ------------------
79! mpi comm alltoall
80 CALL mpi_ialltoall(sendbuf,send_size,mpi_integer,
81 . recvbuf,rcv_size,mpi_integer,
82 . comm,request,error)
83! ------------------
84#endif
85#else
86 recvbuf = 0
87#endif
88 RETURN
subroutine mpi_alltoall(sendbuf, sendcnt, sendtype, recvbuf, recvcnt, recvtype, comm, ierr)
Definition mpi.f:161