-
Notifications
You must be signed in to change notification settings - Fork 10
/
send.c
253 lines (161 loc) · 5.01 KB
/
send.c
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
#include "mpiP.h"
/*
* SENDING
*
*/
static int mpi_match_recv(void *r, void *tag)
{
return( ((Req *)r)->tag == MPI_ANY_TAG ||
((Req *)r)->tag == *((int *)tag) );
}
/*
*
*/
int FC_FUNC( mpi_isend , MPI_ISEND )(void *buf, int *count, int *datatype,
int *dest, int *tag, int *comm, int *req, int *ierror)
{
*ierror=MPI_Isend(buf,*count,*datatype,*dest,*tag,
*comm, (void *)req);
return MPI_SUCCESS;
}
int MPI_Isend(void *buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm, MPI_Request *request)
{
pListitem match;
Comm *mycomm;
Req *rreq, *sreq;
mycomm=mpi_handle_to_ptr(comm); /* (Comm *)comm; */
#ifdef INFO
fflush(stdout);
fprintf(stderr,"MPI_Isend: Comm=%d tag=%d count=%d type=%d\n",
mycomm->num,tag,count,datatype);
#endif
if (dest!=0 && dest!=MPI_PROC_NULL)
{
fprintf(stderr,"MPI_Isend: send to %d\n",dest);
abort();
}
mpi_alloc_handle(request,(void **) &sreq);
if (dest==MPI_PROC_NULL)
{
sreq->complete=1;
return(MPI_SUCCESS);
}
if (( match=AP_list_search_func(mycomm->recvlist,mpi_match_recv,&tag)))
{
rreq=(Req *)AP_listitem_data(match);
AP_list_delete_item(mycomm->recvlist,match);
copy_data2(buf, count, datatype, rreq->buf, rreq->count, rreq->type);
rreq->complete=1;
rreq->source=0;
rreq->tag=tag; /* in case rreq->tag was MPI_ANY_TAG */
sreq->complete=1;
#ifdef DEBUG
printf("Completion(send) value=%d tag=%d\n",
*((int *)buf),rreq->tag);
#endif
return(MPI_SUCCESS);
}
sreq->buf=buf;
sreq->tag=tag;
sreq->complete=0;
sreq->listitem=AP_list_append(mycomm->sendlist,sreq);
#ifdef INFO
print_list(mycomm->sendlist,"sendlist for comm ",mycomm->num);
#endif
return(MPI_SUCCESS);
}
/*********/
int FC_FUNC(mpi_send, MPI_SEND) ( void *buf, int *count, int *datatype,
int *dest, int *tag, int *comm, int *ierror)
{
*ierror=MPI_Send(buf, *count, *datatype, *dest, *tag, *comm);
return MPI_SUCCESS;
}
int MPI_Send(void* buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm)
{
MPI_Request request;
MPI_Status status;
#ifdef INFO
fflush(stdout);
fprintf(stderr,"MPI_Send: ");
#endif
MPI_Isend(buf,count,datatype,dest,tag,comm,&request);
MPI_Wait(&request,&status);
return(MPI_SUCCESS);
}
/*********/
int FC_FUNC(mpi_ssend, MPI_SSEND) ( void *buf, int *count, int *datatype,
int *dest, int *tag, int *comm, int *ierror)
{
*ierror=MPI_Send(buf, *count, *datatype, *dest, *tag, *comm);
return MPI_SUCCESS;
}
int MPI_Ssend(void* buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm)
{
return(MPI_Send(buf,count,datatype,dest,tag,comm));
}
/*********/
int FC_FUNC(mpi_rsend, MPI_RSEND) ( void *buf, int *count, int *datatype,
int *dest, int *tag, int *comm, int *ierror)
{
*ierror=MPI_Send(buf, *count, *datatype, *dest, *tag, *comm);
return MPI_SUCCESS;
}
int MPI_Rsend(void* buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm)
{
return(MPI_Send(buf,count,datatype,dest,tag,comm));
}
/*********/
int FC_FUNC( mpi_irsend , MPI_IRSEND )(void *buf, int *count, int *datatype,
int *dest, int *tag, int *comm, int *req, int *ierror)
{
*ierror=MPI_Irsend(buf,*count,*datatype,*dest,*tag,
*comm, (void *)req);
return MPI_SUCCESS;
}
int MPI_Irsend(void *buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm, MPI_Request *request)
{
Req *req;
MPI_Isend(buf,count,datatype,dest,tag,comm,request);
/* Ready mode implied a receive must already be posted,
* so the Isend should have completed already.
* Can't use MPI_Test here for the error check because
* it would clear the request prematurely.
*/
req=mpi_handle_to_ptr(*request);
if ( !req->complete )
{
fprintf(stderr,"MPI_Irsend: no matching receive found\n");
abort();
}
return(MPI_SUCCESS);
}
/*********/
int FC_FUNC(mpi_sendrecv, MPI_SENDRECV) (
void *sendbuf, int *sendcount, int *sendtype, int *dest, int *sendtag,
void *recvbuf, int *recvcount, int *recvtype, int *source, int *recvtag,
int *comm, int *status,
int *ierror)
{
*ierror=MPI_Sendrecv(sendbuf, *sendcount, *sendtype, *dest, *sendtag,
recvbuf, *recvcount, *recvtype, *source, *recvtag,
*comm, mpi_c_status(status));
return MPI_SUCCESS;
}
int MPI_Sendrecv(void* sendbuf, int sendcount, MPI_Datatype sendtype,
int dest, int sendtag,
void *recvbuf, int recvcount, MPI_Datatype recvtype,
int source, int recvtag,
MPI_Comm comm, MPI_Status *status)
{
MPI_Request request;
MPI_Irecv(recvbuf, recvcount, recvtype, source, recvtag, comm, &request);
MPI_Send(sendbuf, sendcount, sendtype, dest, sendtag, comm);
MPI_Wait(&request,status);
return(MPI_SUCCESS);
}