Blame view

mpidefs-parallel.f90 10.2 KB
de89d3bc   dmayerich   Initial commit.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  !
  !  MPI alias definitions for parallel machines.
  !
  !
  !  last revised: 15 January 2011
  !
        module mpidefs
        use mpi
        implicit none
        integer :: ms_mpi_comm_world,ms_mpi_sum,ms_mpi_max,ms_mpi_min
  
        contains
  
           subroutine ms_mpi(mpi_command,mpi_recv_buf_i,mpi_recv_buf_r,mpi_recv_buf_c,mpi_recv_buf_dp, &
                             mpi_recv_buf_dc,mpi_send_buf_i,mpi_send_buf_r,mpi_send_buf_c, &
                             mpi_send_buf_dp,mpi_send_buf_dc,mpi_number,mpi_comm,mpi_group,mpi_rank,mpi_size,&
                             mpi_new_comm,mpi_new_group,mpi_new_group_list,mpi_operation)
           integer, optional :: mpi_number,mpi_recv_buf_i(*),mpi_send_buf_i(*),mpi_comm,mpi_group,mpi_rank, &
                                mpi_size,mpi_new_comm,mpi_new_group,mpi_new_group_list(*),mpi_operation
           integer :: stat(MPI_STATUS_SIZE)
           real(4), optional :: mpi_recv_buf_r(*),mpi_send_buf_r(*)
           real(8), optional :: mpi_recv_buf_dp(*),mpi_send_buf_dp(*)
           complex(4), optional :: mpi_recv_buf_c(*),mpi_send_buf_c(*)
           complex(8), optional :: mpi_recv_buf_dc(*),mpi_send_buf_dc(*)
           character(*) :: mpi_command
           integer :: type,ierr,comm,size,rank,group,newcomm
  
           if(mpi_command.eq.'init') then
              call mpi_init(ierr)
              ms_mpi_comm_world=mpi_comm_world
              ms_mpi_sum=mpi_sum
              ms_mpi_max=mpi_max
              ms_mpi_min=mpi_min
              return
           endif
           if(mpi_command.eq.'finalize') then
              call mpi_finalize(ierr)
              return
           endif
           if(present(mpi_comm)) then
              comm=mpi_comm
           else
              comm=mpi_comm_world
           endif
           if(mpi_command.eq.'size') then
              call mpi_comm_size(comm,size,ierr)
              mpi_size=size
              return
           endif
           if(mpi_command.eq.'rank') then
              call mpi_comm_rank(comm,rank,ierr)
              mpi_rank=rank
              return
           endif
           if(mpi_command.eq.'group') then
              call mpi_comm_group(comm,group,ierr)
              mpi_group=group
              return
           endif
           if(mpi_command.eq.'incl') then
              call mpi_group_incl(mpi_group,mpi_size,mpi_new_group_list,group,ierr)
              mpi_new_group=group
              return
           endif
           if(mpi_command.eq.'create') then
              call mpi_comm_create(comm,mpi_group,newcomm,ierr)
              mpi_new_comm=newcomm
              return
           endif
           if(mpi_command.eq.'barrier') then
              call mpi_barrier (comm,ierr)
              return
           endif
  
           if(present(mpi_recv_buf_i).or.present(mpi_send_buf_i)) then
              type=mpi_integer
              if(mpi_command.eq.'bcast') then
                 call MPI_BCAST (mpi_send_buf_i,mpi_number,type,mpi_rank,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'send') then
                 call mpi_send(mpi_send_buf_i,mpi_number,type,mpi_rank,1,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'recv') then
                 call mpi_recv(mpi_recv_buf_i,mpi_number,type,mpi_rank,1,comm,stat,ierr)
                 return
              endif
              if(mpi_command.eq.'reduce') then
                 if(present(mpi_send_buf_i)) then
                    call mpi_reduce(mpi_send_buf_i,mpi_recv_buf_i,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 else
                    call mpi_reduce(mpi_in_place,mpi_recv_buf_i,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 endif
                 return
              endif
              if(mpi_command.eq.'allreduce') then
                 if(present(mpi_send_buf_i)) then
                    call mpi_allreduce(mpi_send_buf_i,mpi_recv_buf_i,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 else
                    call mpi_allreduce(mpi_in_place,mpi_recv_buf_i,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 endif
                 return
              endif
           endif
  
           if(present(mpi_recv_buf_r).or.present(mpi_send_buf_r)) then
              type=mpi_real
              if(mpi_command.eq.'bcast') then
                 call MPI_BCAST (mpi_send_buf_r,mpi_number,type,mpi_rank,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'send') then
                 call mpi_send(mpi_send_buf_r,mpi_number,type,mpi_rank,1,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'recv') then
                 call mpi_recv(mpi_recv_buf_r,mpi_number,type,mpi_rank,1,comm,stat,ierr)
                 return
              endif
              if(mpi_command.eq.'reduce') then
                 if(present(mpi_send_buf_r)) then
                    call mpi_reduce(mpi_send_buf_r,mpi_recv_buf_r,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 else
                    call mpi_reduce(mpi_in_place,mpi_recv_buf_r,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 endif
                 return
              endif
              if(mpi_command.eq.'allreduce') then
                 if(present(mpi_send_buf_r)) then
                    call mpi_allreduce(mpi_send_buf_r,mpi_recv_buf_r,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 else
                    call mpi_allreduce(mpi_in_place,mpi_recv_buf_r,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 endif
                 return
              endif
           endif
  
           if(present(mpi_recv_buf_c).or.present(mpi_send_buf_c)) then
              type=mpi_complex
              if(mpi_command.eq.'bcast') then
                 call MPI_BCAST (mpi_send_buf_c,mpi_number,type,mpi_rank,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'send') then
                 call mpi_send(mpi_send_buf_c,mpi_number,type,mpi_rank,1,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'recv') then
                 call mpi_recv(mpi_recv_buf_c,mpi_number,type,mpi_rank,1,comm,stat,ierr)
                 return
              endif
              if(mpi_command.eq.'reduce') then
                 if(present(mpi_send_buf_c)) then
                    call mpi_reduce(mpi_send_buf_c,mpi_recv_buf_c,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 else
                    call mpi_reduce(mpi_in_place,mpi_recv_buf_c,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 endif
                 return
              endif
              if(mpi_command.eq.'allreduce') then
                 if(present(mpi_send_buf_c)) then
                    call mpi_allreduce(mpi_send_buf_c,mpi_recv_buf_c,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 else
                    call mpi_allreduce(mpi_in_place,mpi_recv_buf_c,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 endif
                 return
              endif
           endif
  
           if(present(mpi_recv_buf_dp).or.present(mpi_send_buf_dp)) then
              type=mpi_double_precision
              if(mpi_command.eq.'bcast') then
                 call MPI_BCAST (mpi_send_buf_dp,mpi_number,type,mpi_rank,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'send') then
                 call mpi_send(mpi_send_buf_dp,mpi_number,type,mpi_rank,1,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'recv') then
                 call mpi_recv(mpi_recv_buf_dp,mpi_number,type,mpi_rank,1,comm,stat,ierr)
                 return
              endif
              if(mpi_command.eq.'reduce') then
                 if(present(mpi_send_buf_dp)) then
                    call mpi_reduce(mpi_send_buf_dp,mpi_recv_buf_dp,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 else
                    call mpi_reduce(mpi_in_place,mpi_recv_buf_dp,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 endif
                 return
              endif
              if(mpi_command.eq.'allreduce') then
                 if(present(mpi_send_buf_dp)) then
                    call mpi_allreduce(mpi_send_buf_dp,mpi_recv_buf_dp,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 else
                    call mpi_allreduce(mpi_in_place,mpi_recv_buf_dp,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 endif
                 return
              endif
           endif
  
           if(present(mpi_recv_buf_dc).or.present(mpi_send_buf_dc)) then
              type=mpi_double_complex
              if(mpi_command.eq.'bcast') then
                 call MPI_BCAST (mpi_send_buf_dc,mpi_number,type,mpi_rank,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'send') then
                 call mpi_send(mpi_send_buf_dc,mpi_number,type,mpi_rank,1,comm,ierr)
                 return
              endif
              if(mpi_command.eq.'recv') then
                 call mpi_recv(mpi_recv_buf_dc,mpi_number,type,mpi_rank,1,comm,stat,ierr)
                 return
              endif
              if(mpi_command.eq.'reduce') then
                 if(present(mpi_send_buf_dc)) then
                    call mpi_reduce(mpi_send_buf_dc,mpi_recv_buf_dc,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 else
                    call mpi_reduce(mpi_in_place,mpi_recv_buf_dc,mpi_number,type,mpi_operation, &
                                 mpi_rank,comm,ierr)
                 endif
                 return
              endif
              if(mpi_command.eq.'allreduce') then
                 if(present(mpi_send_buf_dc)) then
                    call mpi_allreduce(mpi_send_buf_dc,mpi_recv_buf_dc,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 else
                    call mpi_allreduce(mpi_in_place,mpi_recv_buf_dc,mpi_number,type,mpi_operation, &
                                 comm,ierr)
                 endif
                 return
              endif
           endif
  
           end subroutine ms_mpi
        end module mpidefs