OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_ialltoall.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 ../engine/source/mpi/generic/spmd_ialltoall.F
26!||--- called by ------------------------------------------------------
27!|| spmd_sphgat ../engine/source/mpi/sph/spmd_sphgat.F
28!||--- calls -----------------------------------------------------
29!||====================================================================
30 SUBROUTINE spmd_ialltoall(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 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(in) :: SEND_SIZE,TOTAL_SEND_SIZE
44 INTEGER, INTENT(in) :: REQUEST,COMM
45 INTEGER, INTENT(in) :: RCV_SIZE,TOTAL_RCV_SIZE
46 my_real, DIMENSION(TOTAL_SEND_SIZE), INTENT(in) :: sendbuf
47 my_real, DIMENSION(TOTAL_RCV_SIZE), INTENT(out) :: 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(m) :
58! send buffer
59! to proc : P(1) P(2) P(n)
60! | s1 | s2 | ... | sn |
61! size = N N N
62!
63! rcv buffer
64! from proc : P(1) P(2) P(n)
65! | r1 | r2 | ... | rn |
66! size = N N N
67! ------------------------------------------
68
69! PLMPI uses MPI-2.x version : MPI_IALLTOALL was introduced in MPI-3.0 version
70#if _PLMPI
71! mpi comm alltoall
72 CALL mpi_alltoall(sendbuf,send_size,real,
73 . recvbuf,rcv_size,real,
74 . comm,error)
75! ------------------
76#else
77! ------------------
78! mpi comm alltoall
79 CALL mpi_ialltoall(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
88 END SUBROUTINE spmd_ialltoall
89
90
91! ----------------------------------------
#define my_real
Definition cppsort.cpp:32
subroutine mpi_alltoall(sendbuf, sendcnt, sendtype, recvbuf, recvcnt, recvtype, comm, ierr)
Definition mpi.f:161
subroutine spmd_ialltoall(sendbuf, recvbuf, total_send_size, send_size, total_rcv_size, rcv_size, request, comm)