|
13 | 13 | ! Copyright (c) 2006-2021 Cisco Systems, Inc. All rights reserved
|
14 | 14 | ! Copyright (c) 2016-2018 Research Organization for Information Science
|
15 | 15 | ! and Technology (RIST). All rights reserved.
|
| 16 | +! Copyright (c) 2021 Sandia National Laboratories. All rights reserved. |
16 | 17 | ! $COPYRIGHT$
|
17 | 18 | !
|
18 | 19 | ! Additional copyrights may follow
|
@@ -1211,6 +1212,53 @@ end subroutine MPI_Probe
|
1211 | 1212 | end interface
|
1212 | 1213 |
|
1213 | 1214 |
|
| 1215 | +interface |
| 1216 | + |
| 1217 | +subroutine MPI_Parrived(request, partition, flag, ierror) |
| 1218 | + integer, intent(in) :: request |
| 1219 | + integer, intent(in) :: partition |
| 1220 | + logical, intent(out) :: flag |
| 1221 | + integer, intent(out) :: ierror |
| 1222 | +end subroutine MPI_Parrived |
| 1223 | + |
| 1224 | +end interface |
| 1225 | + |
| 1226 | + |
| 1227 | +interface |
| 1228 | + |
| 1229 | +subroutine MPI_Pready(partition, request, ierror) |
| 1230 | + integer, intent(in) :: partition |
| 1231 | + integer, intent(in) :: request |
| 1232 | + integer, intent(out) :: ierror |
| 1233 | +end subroutine MPI_Pready |
| 1234 | + |
| 1235 | +end interface |
| 1236 | + |
| 1237 | + |
| 1238 | +interface |
| 1239 | + |
| 1240 | +subroutine MPI_Pready_list(length, array_of_partitions, request, ierror) |
| 1241 | + integer, intent(in) :: length |
| 1242 | + integer, dimension(*), intent(in) :: array_of_partitions |
| 1243 | + integer, intent(in) :: request |
| 1244 | + integer, intent(out) :: ierror |
| 1245 | +end subroutine MPI_Pready_list |
| 1246 | + |
| 1247 | +end interface |
| 1248 | + |
| 1249 | + |
| 1250 | +interface |
| 1251 | + |
| 1252 | +subroutine MPI_Pready_range(partition_low, partition_high, request, ierror) |
| 1253 | + integer, intent(in) :: partition_low |
| 1254 | + integer, intent(in) :: partition_high |
| 1255 | + integer, intent(in) :: request |
| 1256 | + integer, intent(out) :: ierror |
| 1257 | +end subroutine MPI_Pready_range |
| 1258 | + |
| 1259 | +end interface |
| 1260 | + |
| 1261 | + |
1214 | 1262 | interface
|
1215 | 1263 |
|
1216 | 1264 | subroutine MPI_Query_thread(provided, ierror)
|
|
0 commit comments