OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_ialltoall_int.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23
24!||====================================================================
25!|| spmd_ialltoall_int ../engine/source/mpi/generic/spmd_ialltoall_int.F
26!||--- called by ------------------------------------------------------
27!|| spmd_sphvox ../engine/source/mpi/sph/spmd_sphvox.F
28!||--- calls -----------------------------------------------------
29!||====================================================================
30 SUBROUTINE spmd_ialltoall_int(SENDBUF,RECVBUF,TOTAL_SEND_SIZE,SEND_SIZE,
31 . TOTAL_RCV_SIZE,RCV_SIZE,REQUEST,COMM)
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
89 END SUBROUTINE spmd_ialltoall_int
90
91
92! ----------------------------------------
subroutine mpi_alltoall(sendbuf, sendcnt, sendtype, recvbuf, recvcnt, recvtype, comm, ierr)
Definition mpi.f:161
subroutine spmd_ialltoall_int(sendbuf, recvbuf, total_send_size, send_size, total_rcv_size, rcv_size, request, comm)