@@ -186,15 +186,15 @@ namespace classdesc
186
186
{
187
187
int flag;
188
188
for (size_t i=0 ; i<bufs.size (); i++) requests[i]=bufs[i].request ;
189
- MPI_Testall (bufs.size (),& requests[ 0 ] ,&flag,MPI_STATUSES_IGNORE);
189
+ MPI_Testall (bufs.size (),requests. data () ,&flag,MPI_STATUSES_IGNORE);
190
190
return flag;
191
191
}
192
192
// / return the index of any request that has completed, or MPI_UNDEFINED if none
193
193
int testany ()
194
194
{
195
195
int flag,index ;
196
196
for (size_t i=0 ; i<bufs.size (); i++) requests[i]=bufs[i].request ;
197
- MPI_Testany (bufs.size (),& requests[ 0 ] ,&index ,&flag,MPI_STATUS_IGNORE);
197
+ MPI_Testany (bufs.size (),requests. data () ,&index ,&flag,MPI_STATUS_IGNORE);
198
198
return index ;
199
199
}
200
200
// / return the index of the requests that have completed
@@ -203,21 +203,21 @@ namespace classdesc
203
203
int count;
204
204
std::vector<int > index (bufs.size ());
205
205
for (size_t i=0 ; i<bufs.size (); i++) requests[i]=bufs[i].request ;
206
- MPI_Testsome (bufs.size (),& requests[ 0 ] ,&count,& index [ 0 ] ,MPI_STATUSES_IGNORE);
206
+ MPI_Testsome (bufs.size (),requests. data () ,&count,index . data () ,MPI_STATUSES_IGNORE);
207
207
return std::vector<int >(index .begin (),index .begin ()+count);
208
208
}
209
209
// / wait for all outstanding requests to complete
210
210
void waitall ()
211
211
{
212
212
for (size_t i=0 ; i<bufs.size (); i++) requests[i]=bufs[i].request ;
213
- MPI_Waitall (bufs.size (),& requests[ 0 ] ,MPI_STATUSES_IGNORE);
213
+ MPI_Waitall (bufs.size (),requests. data () ,MPI_STATUSES_IGNORE);
214
214
}
215
215
// / wait for any outstanding request to complete, returning index of completed request
216
216
int waitany ()
217
217
{
218
218
int index ;
219
219
for (size_t i=0 ; i<bufs.size (); i++) requests[i]=bufs[i].request ;
220
- MPI_Waitany (bufs.size (),& requests[ 0 ] ,&index ,MPI_STATUSES_IGNORE);
220
+ MPI_Waitany (bufs.size (),requests. data () ,&index ,MPI_STATUSES_IGNORE);
221
221
return index ;
222
222
}
223
223
// / wait for some outstanding requests to complete, returning an array of request indices
@@ -226,7 +226,7 @@ namespace classdesc
226
226
int count;
227
227
std::vector<int > index (bufs.size ());
228
228
for (size_t i=0 ; i<bufs.size (); i++) requests[i]=bufs[i].request ;
229
- MPI_Waitsome (bufs.size (),& requests[ 0 ] ,&count,& index [ 0 ] ,MPI_STATUS_IGNORE);
229
+ MPI_Waitsome (bufs.size (),requests. data () ,&count,index . data () ,MPI_STATUS_IGNORE);
230
230
return std::vector<int >(index .begin (),index .begin ()+count);
231
231
}
232
232
};
0 commit comments