impi-devel 2021.11.0__py2.py3-none-manylinux1_x86_64.whl → 2021.12.0__py2.py3-none-manylinux1_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of impi-devel might be problematic. Click here for more details.
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpif77 +4 -4
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpif90 +4 -4
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpigcc +1 -1
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpigxx +1 -1
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/include/mpi.h +998 -422
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/include/mpicxx.h +35 -35
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/include/mpio.h +149 -0
- {impi_devel-2021.11.0.dist-info → impi_devel-2021.12.0.dist-info}/METADATA +2 -2
- impi_devel-2021.12.0.dist-info/RECORD +21 -0
- impi_devel-2021.11.0.dist-info/RECORD +0 -21
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpicc +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpicxx +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpifc +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpiicc +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpiicpc +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpiicpx +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpiicx +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpiifort +0 -0
- {impi_devel-2021.11.0.data → impi_devel-2021.12.0.data}/data/bin/mpiifx +0 -0
- {impi_devel-2021.11.0.dist-info → impi_devel-2021.12.0.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.11.0.dist-info → impi_devel-2021.12.0.dist-info}/WHEEL +0 -0
- {impi_devel-2021.11.0.dist-info → impi_devel-2021.12.0.dist-info}/top_level.txt +0 -0
|
@@ -599,8 +599,8 @@ typedef int (MPI_Delete_function) ( MPI_Comm, int, void *, void * );
|
|
|
599
599
|
* digits for REV, 1 digit for EXT and 2 digits for EXT_NUMBER. So,
|
|
600
600
|
* 2019.0.0b0 will have the numeric version 20190000100.
|
|
601
601
|
*/
|
|
602
|
-
#define I_MPI_VERSION "2021.
|
|
603
|
-
#define I_MPI_NUMVERSION
|
|
602
|
+
#define I_MPI_VERSION "2021.12.0"
|
|
603
|
+
#define I_MPI_NUMVERSION 20211200300
|
|
604
604
|
|
|
605
605
|
/* for the datatype decoders */
|
|
606
606
|
enum MPIR_Combiner_enum {
|
|
@@ -1016,6 +1016,16 @@ typedef int (MPI_Datarep_extent_function)(MPI_Datatype datatype, MPI_Aint *,
|
|
|
1016
1016
|
void *);
|
|
1017
1017
|
#define MPI_CONVERSION_FN_NULL ((MPI_Datarep_conversion_function *)0)
|
|
1018
1018
|
|
|
1019
|
+
typedef int (MPI_Datarep_conversion_function_c)(void *, MPI_Datatype, MPI_Count,
|
|
1020
|
+
void *, MPI_Offset, void *);
|
|
1021
|
+
#define MPI_CONVERSION_FN_NULL_C ((MPI_Datarep_conversion_function_c *)0)
|
|
1022
|
+
|
|
1023
|
+
typedef struct {
|
|
1024
|
+
void **storage_stack;
|
|
1025
|
+
} QMPI_Context;
|
|
1026
|
+
|
|
1027
|
+
#define QMPI_MAX_TOOL_NAME_LENGTH 256
|
|
1028
|
+
|
|
1019
1029
|
/*
|
|
1020
1030
|
For systems that may need to add additional definitions to support
|
|
1021
1031
|
different declaration styles and options (e.g., different calling
|
|
@@ -1130,58 +1140,246 @@ int MPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf
|
|
|
1130
1140
|
int MPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1131
1141
|
MPI_Datatype datatype, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1132
1142
|
int MPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1133
|
-
int
|
|
1134
|
-
int
|
|
1135
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1136
|
-
int MPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1137
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1138
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1139
|
-
int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1140
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, int root,
|
|
1141
|
-
MPI_Comm comm)
|
|
1142
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1143
|
-
int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1144
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1145
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1146
|
-
int MPI_Scatterv(const void *sendbuf, const int *sendcounts, const int *displs,
|
|
1147
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1148
|
-
int root, MPI_Comm comm)
|
|
1149
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1143
|
+
int MPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1144
|
+
int MPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1150
1145
|
int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1151
1146
|
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1152
1147
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1148
|
+
int MPI_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1149
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1150
|
+
MPI_Request *request)
|
|
1151
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1153
1152
|
int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1154
|
-
const int
|
|
1153
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1154
|
+
MPI_Comm comm)
|
|
1155
1155
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1156
|
+
int MPI_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1157
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1158
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1159
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1160
|
+
int MPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1161
|
+
MPI_Comm comm)
|
|
1162
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1163
|
+
int MPI_Allreduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1164
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1165
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1156
1166
|
int MPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1157
1167
|
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1158
1168
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1159
|
-
int
|
|
1160
|
-
|
|
1161
|
-
|
|
1169
|
+
int MPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1170
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1171
|
+
MPI_Request *request)
|
|
1172
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1173
|
+
int MPI_Alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1174
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int rdispls[],
|
|
1175
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1162
1176
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1177
|
+
int MPI_Alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1178
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1179
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1180
|
+
MPI_Request *request)
|
|
1181
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1163
1182
|
int MPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1164
1183
|
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1165
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1166
|
-
|
|
1167
|
-
|
|
1184
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1185
|
+
MPICH_API_PUBLIC;
|
|
1186
|
+
int MPI_Alltoallw_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1187
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1188
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1189
|
+
MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1190
|
+
int MPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1191
|
+
int MPI_Barrier_init(MPI_Comm comm, MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1192
|
+
int MPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
1193
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1194
|
+
int MPI_Bcast_init(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1195
|
+
MPI_Info info, MPI_Request *request)
|
|
1196
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1197
|
+
int MPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1198
|
+
MPI_Comm comm)
|
|
1168
1199
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1169
|
-
int
|
|
1170
|
-
|
|
1200
|
+
int MPI_Exscan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1201
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1202
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1203
|
+
int MPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1204
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1205
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1206
|
+
int MPI_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1207
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
1208
|
+
MPI_Request *request)
|
|
1209
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1210
|
+
int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1211
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1212
|
+
MPI_Comm comm)
|
|
1213
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1214
|
+
int MPI_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1215
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1216
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1217
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1218
|
+
int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1219
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1220
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1221
|
+
int MPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1222
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1223
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1224
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1225
|
+
int MPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1226
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1227
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1228
|
+
int MPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1229
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1230
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1231
|
+
int MPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1232
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1233
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1234
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1235
|
+
int MPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1236
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1237
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1238
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1239
|
+
int MPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1240
|
+
int MPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1241
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1242
|
+
int MPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1243
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1244
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1245
|
+
int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1246
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1247
|
+
MPI_Request *request)
|
|
1248
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1249
|
+
int MPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1250
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1251
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1252
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1253
|
+
int MPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1254
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1255
|
+
MPI_Request *request)
|
|
1256
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1257
|
+
int MPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1258
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1259
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1260
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1261
|
+
int MPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1262
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1263
|
+
MPI_Request *request)
|
|
1264
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1265
|
+
int MPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1266
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1267
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1268
|
+
MPI_Request *request)
|
|
1269
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1270
|
+
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1271
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1272
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1273
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1274
|
+
int MPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1275
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
1276
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1277
|
+
int MPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1278
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1279
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1280
|
+
int MPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1281
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
1282
|
+
MPI_Request *request)
|
|
1283
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1284
|
+
int MPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1285
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1286
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1287
|
+
int MPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1288
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1289
|
+
MPI_Request *request)
|
|
1290
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1291
|
+
int MPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1292
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1293
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
1294
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1295
|
+
int MPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1296
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1297
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1298
|
+
int MPI_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1299
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1300
|
+
MPI_Info info, MPI_Request *request)
|
|
1301
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1302
|
+
int MPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1303
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1304
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1305
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1306
|
+
int MPI_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1307
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1308
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1309
|
+
MPI_Request *request)
|
|
1310
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1311
|
+
int MPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1312
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1313
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1314
|
+
int MPI_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1315
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1316
|
+
MPI_Info info, MPI_Request *request)
|
|
1317
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1318
|
+
int MPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1319
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1320
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
1321
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1322
|
+
int MPI_Neighbor_alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1323
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1324
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1325
|
+
MPI_Info info, MPI_Request *request)
|
|
1326
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1327
|
+
int MPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1328
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1329
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1330
|
+
MPICH_API_PUBLIC;
|
|
1331
|
+
int MPI_Neighbor_alltoallw_init(const void *sendbuf, const int sendcounts[],
|
|
1332
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
1333
|
+
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
1334
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
1335
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1336
|
+
int MPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1337
|
+
int root, MPI_Comm comm)
|
|
1171
1338
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1172
|
-
int
|
|
1173
|
-
int
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1339
|
+
int MPI_Reduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1340
|
+
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1341
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1342
|
+
int MPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
1343
|
+
MPI_Op op)
|
|
1344
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1177
1345
|
int MPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1178
1346
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1179
1347
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1348
|
+
int MPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1349
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1350
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1351
|
+
int MPI_Reduce_scatter_block_init(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1352
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
1353
|
+
MPI_Request *request)
|
|
1354
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1355
|
+
int MPI_Reduce_scatter_init(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1356
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
1357
|
+
MPI_Request *request)
|
|
1358
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1180
1359
|
int MPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1181
1360
|
MPI_Comm comm)
|
|
1182
1361
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1183
|
-
int
|
|
1184
|
-
|
|
1362
|
+
int MPI_Scan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1363
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1364
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1365
|
+
int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1366
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1367
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1368
|
+
int MPI_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1369
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
1370
|
+
MPI_Request *request)
|
|
1371
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1372
|
+
int MPI_Scatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1373
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1374
|
+
int root, MPI_Comm comm)
|
|
1375
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1376
|
+
int MPI_Scatterv_init(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1377
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1378
|
+
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1379
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1380
|
+
|
|
1381
|
+
IMPI_DEVICE_EXPORT int MPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1382
|
+
IMPI_DEVICE_EXPORT int MPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1185
1383
|
int MPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1186
1384
|
int ranks2[]) MPICH_API_PUBLIC;
|
|
1187
1385
|
int MPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
@@ -1193,7 +1391,7 @@ int MPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgrou
|
|
|
1193
1391
|
int MPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1194
1392
|
int MPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1195
1393
|
int MPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1196
|
-
int MPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1394
|
+
IMPI_DEVICE_EXPORT int MPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1197
1395
|
int MPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1198
1396
|
int MPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
1199
1397
|
int MPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
@@ -1291,13 +1489,21 @@ int MPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_
|
|
|
1291
1489
|
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1292
1490
|
IMPI_DEVICE_EXPORT int MPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1293
1491
|
int MPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
1294
|
-
int MPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1492
|
+
IMPI_DEVICE_EXPORT int MPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1295
1493
|
IMPI_DEVICE_EXPORT int MPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1296
1494
|
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1297
1495
|
int MPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1298
1496
|
int MPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
1299
1497
|
IMPI_DEVICE_EXPORT int MPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1300
1498
|
int MPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
1499
|
+
int MPI_Win_allocate_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1500
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1501
|
+
int MPI_Win_allocate_shared_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1502
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1503
|
+
int MPI_Win_create_c(void *base, MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1504
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1505
|
+
int MPI_Win_shared_query_c(MPI_Win win, int rank, MPI_Aint *size, MPI_Aint *disp_unit,
|
|
1506
|
+
void *baseptr) MPICH_API_PUBLIC;
|
|
1301
1507
|
|
|
1302
1508
|
/* MPI-3 One-Sided Communication Routines */
|
|
1303
1509
|
int MPI_Win_allocate(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, void *baseptr,
|
|
@@ -1480,14 +1686,7 @@ int MPI_Type_create_f90_integer(int range, MPI_Datatype *newtype) MPICH_API_PUBL
|
|
|
1480
1686
|
int MPI_Type_create_f90_real(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1481
1687
|
int MPI_Type_create_f90_complex(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1482
1688
|
|
|
1483
|
-
int MPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
1484
|
-
MPI_Op op)
|
|
1485
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1486
1689
|
int MPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
1487
|
-
int MPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1488
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1489
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1490
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1491
1690
|
int MPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
1492
1691
|
const int sourceweights[], int outdegree,
|
|
1493
1692
|
const int destinations[], const int destweights[],
|
|
@@ -1510,112 +1709,6 @@ int MPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
|
1510
1709
|
|
|
1511
1710
|
/* Nonblocking collectives */
|
|
1512
1711
|
int MPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1513
|
-
int MPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1514
|
-
int MPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1515
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1516
|
-
int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1517
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1518
|
-
MPI_Request *request)
|
|
1519
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1520
|
-
int MPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1521
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1522
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1523
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1524
|
-
int MPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1525
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1526
|
-
MPI_Request *request)
|
|
1527
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1528
|
-
int MPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1529
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1530
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
1531
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1532
|
-
int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1533
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1534
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1535
|
-
int MPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1536
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1537
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1538
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1539
|
-
int MPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1540
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1541
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1542
|
-
int MPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1543
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1544
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1545
|
-
MPI_Request *request)
|
|
1546
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1547
|
-
int MPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1548
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1549
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1550
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1551
|
-
int MPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1552
|
-
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
1553
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1554
|
-
int MPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1555
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1556
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1557
|
-
int MPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1558
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1559
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1560
|
-
int MPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1561
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
1562
|
-
MPI_Request *request)
|
|
1563
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1564
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1565
|
-
int MPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1566
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1567
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1568
|
-
int MPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1569
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1570
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1571
|
-
|
|
1572
|
-
/* Neighborhood collectives */
|
|
1573
|
-
int MPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1574
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1575
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1576
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1577
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1578
|
-
int MPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1579
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1580
|
-
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1581
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1582
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1583
|
-
int MPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1584
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1585
|
-
MPI_Request *request)
|
|
1586
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1587
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1588
|
-
int MPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1589
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1590
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1591
|
-
MPI_Request *request)
|
|
1592
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1593
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1594
|
-
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[],
|
|
1595
|
-
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
1596
|
-
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
1597
|
-
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1598
|
-
int MPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1599
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1600
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1601
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1602
|
-
int MPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1603
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1604
|
-
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1605
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1606
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1607
|
-
int MPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1608
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1609
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1610
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1611
|
-
int MPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1612
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1613
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
1614
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1615
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1616
|
-
int MPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1617
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1618
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1619
1712
|
|
|
1620
1713
|
/* Shared memory */
|
|
1621
1714
|
int MPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
@@ -1795,56 +1888,8 @@ int PMPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbu
|
|
|
1795
1888
|
int PMPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1796
1889
|
MPI_Datatype datatype, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1797
1890
|
int PMPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1798
|
-
int PMPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1799
|
-
int PMPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
1800
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1801
|
-
int PMPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1802
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1803
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1804
|
-
int PMPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1805
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, int root,
|
|
1806
|
-
MPI_Comm comm)
|
|
1807
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1808
|
-
int PMPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1809
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1810
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1811
|
-
int PMPI_Scatterv(const void *sendbuf, const int *sendcounts, const int *displs,
|
|
1812
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1813
|
-
int root, MPI_Comm comm)
|
|
1814
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1815
|
-
int PMPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1816
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1817
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1818
|
-
int PMPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1819
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1820
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1821
|
-
int PMPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1822
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1823
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1824
|
-
int PMPI_Alltoallv(const void *sendbuf, const int *sendcounts, const int *sdispls,
|
|
1825
|
-
MPI_Datatype sendtype, void *recvbuf, const int *recvcounts,
|
|
1826
|
-
const int *rdispls, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1827
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1828
|
-
int PMPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1829
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1830
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1831
|
-
int PMPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1832
|
-
MPI_Op op, MPI_Comm comm)
|
|
1833
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1834
|
-
int PMPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1835
|
-
MPI_Op op, int root, MPI_Comm comm)
|
|
1836
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1837
1891
|
int PMPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1838
1892
|
int PMPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1839
|
-
int PMPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1840
|
-
MPI_Op op, MPI_Comm comm)
|
|
1841
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1842
|
-
int PMPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1843
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1844
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1845
|
-
int PMPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1846
|
-
MPI_Comm comm)
|
|
1847
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1848
1893
|
int PMPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1849
1894
|
int PMPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1850
1895
|
int PMPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
@@ -2173,118 +2218,8 @@ int PMPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message
|
|
|
2173
2218
|
|
|
2174
2219
|
/* Nonblocking collectives */
|
|
2175
2220
|
int PMPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2176
|
-
int PMPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2177
|
-
int PMPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2178
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2179
|
-
int PMPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2180
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2181
|
-
MPI_Request *request)
|
|
2182
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2183
|
-
int PMPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2184
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2185
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2186
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2187
|
-
int PMPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2188
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2189
|
-
MPI_Request *request)
|
|
2190
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2191
|
-
int PMPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
2192
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2193
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
2194
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2195
|
-
int PMPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2196
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2197
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2198
|
-
int PMPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2199
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2200
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2201
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2202
|
-
int PMPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2203
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2204
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2205
|
-
int PMPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2206
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2207
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2208
|
-
MPI_Request *request)
|
|
2209
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2210
|
-
int PMPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2211
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2212
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2213
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2214
|
-
int PMPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2215
|
-
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
2216
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2217
|
-
int PMPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2218
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2219
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2220
|
-
int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
2221
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2222
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2223
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2224
|
-
int PMPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2225
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2226
|
-
MPI_Request *request)
|
|
2227
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2228
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2229
|
-
int PMPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2230
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2231
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2232
|
-
int PMPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2233
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2234
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2235
|
-
|
|
2236
|
-
/* Neighborhood collectives */
|
|
2237
|
-
int PMPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2238
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2239
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2240
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2241
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2242
|
-
int PMPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2243
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2244
|
-
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2245
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2246
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2247
|
-
int PMPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2248
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2249
|
-
MPI_Request *request)
|
|
2250
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2251
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2252
|
-
int PMPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2253
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2254
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2255
|
-
MPI_Request *request)
|
|
2256
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2257
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2258
|
-
int PMPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[],
|
|
2259
|
-
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2260
|
-
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
2261
|
-
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2262
|
-
int PMPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2263
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2264
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2265
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2266
|
-
int PMPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2267
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2268
|
-
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2269
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2270
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2271
|
-
int PMPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2272
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2273
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2274
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2275
|
-
int PMPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2276
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2277
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2278
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2279
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2280
|
-
int PMPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
2281
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2282
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2283
|
-
MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2284
|
-
|
|
2285
2221
|
/* Shared memory */
|
|
2286
2222
|
int PMPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2287
|
-
|
|
2288
2223
|
/* Noncollective communicator creation */
|
|
2289
2224
|
int PMPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2290
2225
|
|
|
@@ -2356,44 +2291,84 @@ int PMPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
|
2356
2291
|
int MPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2357
2292
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2358
2293
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2294
|
+
int MPI_Allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2295
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2296
|
+
MPI_Info info, MPI_Request *request)
|
|
2297
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2359
2298
|
int MPI_Allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2360
|
-
const MPI_Count
|
|
2299
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2300
|
+
MPI_Comm comm)
|
|
2361
2301
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2302
|
+
int MPI_Allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2303
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2304
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2305
|
+
MPI_Request *request)
|
|
2306
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2362
2307
|
int MPI_Allreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2363
2308
|
MPI_Op op, MPI_Comm comm)
|
|
2364
2309
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2365
|
-
int
|
|
2366
|
-
|
|
2310
|
+
int MPI_Allreduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2311
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2367
2312
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2368
2313
|
int MPI_Alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2369
2314
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2370
2315
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2316
|
+
int MPI_Alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2317
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2318
|
+
MPI_Info info, MPI_Request *request)
|
|
2319
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2371
2320
|
int MPI_Alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2372
2321
|
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2373
2322
|
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2374
2323
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2324
|
+
int MPI_Alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2325
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2326
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2327
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2328
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2375
2329
|
int MPI_Alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2376
2330
|
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2377
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2331
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2332
|
+
MPICH_API_PUBLIC;
|
|
2333
|
+
int MPI_Alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2334
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[], void *recvbuf,
|
|
2335
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2336
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
2337
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2378
2338
|
int MPI_Bcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2379
2339
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2340
|
+
int MPI_Bcast_init_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2341
|
+
MPI_Info info, MPI_Request *request)
|
|
2342
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2380
2343
|
int MPI_Exscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2381
2344
|
MPI_Op op, MPI_Comm comm)
|
|
2382
2345
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2346
|
+
int MPI_Exscan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2347
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2348
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2383
2349
|
int MPI_Gather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2384
2350
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2385
2351
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2352
|
+
int MPI_Gather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2353
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2354
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2355
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2386
2356
|
int MPI_Gatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2387
|
-
const MPI_Count
|
|
2388
|
-
MPI_Comm comm)
|
|
2357
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2358
|
+
int root, MPI_Comm comm)
|
|
2389
2359
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2360
|
+
int MPI_Gatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2361
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2362
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2363
|
+
MPI_Request *request)
|
|
2364
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2390
2365
|
int MPI_Iallgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2391
2366
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2392
2367
|
MPI_Request *request)
|
|
2393
2368
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2394
|
-
int MPI_Iallgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2395
|
-
const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2396
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2369
|
+
int MPI_Iallgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2370
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2371
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2397
2372
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2398
2373
|
int MPI_Iallreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2399
2374
|
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
@@ -2421,8 +2396,8 @@ int MPI_Igather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtyp
|
|
|
2421
2396
|
MPI_Request *request)
|
|
2422
2397
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2423
2398
|
int MPI_Igatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2424
|
-
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2425
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2399
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2400
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2426
2401
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2427
2402
|
int MPI_Ineighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2428
2403
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
@@ -2431,8 +2406,7 @@ int MPI_Ineighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Data
|
|
|
2431
2406
|
int MPI_Ineighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2432
2407
|
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2433
2408
|
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2434
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2435
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2409
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2436
2410
|
int MPI_Ineighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2437
2411
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2438
2412
|
MPI_Comm comm, MPI_Request *request)
|
|
@@ -2445,7 +2419,8 @@ int MPI_Ineighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
|
2445
2419
|
int MPI_Ineighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2446
2420
|
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2447
2421
|
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2448
|
-
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request)
|
|
2422
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request)
|
|
2423
|
+
MPICH_API_PUBLIC;
|
|
2449
2424
|
int MPI_Ireduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2450
2425
|
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
2451
2426
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
@@ -2464,254 +2439,733 @@ int MPI_Iscatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendty
|
|
|
2464
2439
|
MPI_Request *request)
|
|
2465
2440
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2466
2441
|
int MPI_Iscatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2467
|
-
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2468
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
2442
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2443
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request)
|
|
2469
2444
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2470
2445
|
int MPI_Neighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2471
2446
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2472
2447
|
MPI_Comm comm)
|
|
2473
2448
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2449
|
+
int MPI_Neighbor_allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2450
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2451
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2452
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2474
2453
|
int MPI_Neighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2475
2454
|
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2476
2455
|
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2477
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2478
|
-
|
|
2456
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2457
|
+
int MPI_Neighbor_allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2458
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2459
|
+
const MPI_Aint displs[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2460
|
+
MPI_Info info, MPI_Request *request)
|
|
2461
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2479
2462
|
int MPI_Neighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2480
2463
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2481
2464
|
MPI_Comm comm)
|
|
2482
2465
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2466
|
+
int MPI_Neighbor_alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2467
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2468
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2469
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2483
2470
|
int MPI_Neighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2484
2471
|
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2485
2472
|
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2486
2473
|
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2487
2474
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2488
|
-
int
|
|
2489
|
-
|
|
2490
|
-
|
|
2475
|
+
int MPI_Neighbor_alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2476
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2477
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2478
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2479
|
+
MPI_Request *request)
|
|
2480
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2481
|
+
int MPI_Neighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2482
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2483
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2484
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2485
|
+
int MPI_Neighbor_alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2486
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2487
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2488
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2489
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2490
|
+
MPICH_API_PUBLIC;
|
|
2491
2491
|
int MPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2492
2492
|
MPI_Op op, int root, MPI_Comm comm)
|
|
2493
2493
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2494
|
+
int MPI_Reduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2495
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2496
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2497
|
+
int MPI_Reduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2498
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2499
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2494
2500
|
int MPI_Reduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2495
2501
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2496
2502
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2503
|
+
int MPI_Reduce_scatter_block_init_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2504
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2505
|
+
MPI_Request *request)
|
|
2506
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2507
|
+
int MPI_Reduce_scatter_init_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2508
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2509
|
+
MPI_Request *request)
|
|
2510
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2497
2511
|
int MPI_Scan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2498
2512
|
MPI_Op op, MPI_Comm comm)
|
|
2499
2513
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2514
|
+
int MPI_Scan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2515
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2516
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2500
2517
|
int MPI_Scatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2501
2518
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2502
2519
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2503
|
-
int
|
|
2520
|
+
int MPI_Scatter_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2521
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2522
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2523
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2524
|
+
int MPI_Scatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2504
2525
|
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2505
2526
|
int root, MPI_Comm comm)
|
|
2506
2527
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2507
|
-
|
|
2508
|
-
|
|
2528
|
+
int MPI_Scatterv_init_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2529
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2530
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2531
|
+
MPI_Request *request)
|
|
2532
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2533
|
+
int MPI_Get_count_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2534
|
+
MPICH_API_PUBLIC;
|
|
2535
|
+
int MPI_Get_elements_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2536
|
+
MPICH_API_PUBLIC;
|
|
2537
|
+
int MPI_Pack_c(const void *inbuf, MPI_Count incount, MPI_Datatype datatype, void *outbuf,
|
|
2538
|
+
MPI_Count outsize, MPI_Count *position, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2539
|
+
int MPI_Pack_external_c(const char *datarep, const void *inbuf, MPI_Count incount,
|
|
2540
|
+
MPI_Datatype datatype, void *outbuf, MPI_Count outsize,
|
|
2541
|
+
MPI_Count *position) MPICH_API_PUBLIC;
|
|
2542
|
+
int MPI_Pack_external_size_c(const char *datarep, MPI_Count incount, MPI_Datatype datatype,
|
|
2543
|
+
MPI_Count *size) MPICH_API_PUBLIC;
|
|
2544
|
+
int MPI_Pack_size_c(MPI_Count incount, MPI_Datatype datatype, MPI_Comm comm, MPI_Count *size)
|
|
2545
|
+
MPICH_API_PUBLIC;
|
|
2546
|
+
int MPI_Status_set_elements_c(MPI_Status *status, MPI_Datatype datatype, MPI_Count count)
|
|
2547
|
+
MPICH_API_PUBLIC;
|
|
2548
|
+
int MPI_Type_contiguous_c(MPI_Count count, MPI_Datatype oldtype, MPI_Datatype *newtype)
|
|
2549
|
+
MPICH_API_PUBLIC;
|
|
2550
|
+
int MPI_Type_create_darray_c(int size, int rank, int ndims, const MPI_Count array_of_gsizes[],
|
|
2551
|
+
const int array_of_distribs[], const int array_of_dargs[],
|
|
2552
|
+
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
2553
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2554
|
+
int MPI_Type_create_hindexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
2555
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2556
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2557
|
+
int MPI_Type_create_hindexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
2558
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2559
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2560
|
+
int MPI_Type_create_hvector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
2561
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2562
|
+
int MPI_Type_create_indexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
2563
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2564
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2565
|
+
int MPI_Type_create_resized_c(MPI_Datatype oldtype, MPI_Count lb, MPI_Count extent,
|
|
2566
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2567
|
+
int MPI_Type_create_struct_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
2568
|
+
const MPI_Count array_of_displacements[],
|
|
2569
|
+
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
2570
|
+
MPICH_API_PUBLIC;
|
|
2571
|
+
int MPI_Type_create_subarray_c(int ndims, const MPI_Count array_of_sizes[],
|
|
2572
|
+
const MPI_Count array_of_subsizes[],
|
|
2573
|
+
const MPI_Count array_of_starts[], int order, MPI_Datatype oldtype,
|
|
2574
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2575
|
+
int MPI_Type_get_contents_c(MPI_Datatype datatype, MPI_Count max_integers, MPI_Count max_addresses,
|
|
2576
|
+
MPI_Count max_large_counts, MPI_Count max_datatypes,
|
|
2577
|
+
int array_of_integers[], MPI_Aint array_of_addresses[],
|
|
2578
|
+
MPI_Count array_of_large_counts[], MPI_Datatype array_of_datatypes[])
|
|
2579
|
+
MPICH_API_PUBLIC;
|
|
2580
|
+
int MPI_Type_get_envelope_c(MPI_Datatype datatype, MPI_Count *num_integers,
|
|
2581
|
+
MPI_Count *num_addresses, MPI_Count *num_large_counts,
|
|
2582
|
+
MPI_Count *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
2583
|
+
int MPI_Type_get_extent_c(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
2584
|
+
MPICH_API_PUBLIC;
|
|
2585
|
+
int MPI_Type_get_true_extent_c(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
2586
|
+
MPICH_API_PUBLIC;
|
|
2587
|
+
int MPI_Type_indexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
2588
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2589
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2590
|
+
int MPI_Type_size_c(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2591
|
+
int MPI_Type_vector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
2592
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2593
|
+
int MPI_Unpack_c(const void *inbuf, MPI_Count insize, MPI_Count *position, void *outbuf,
|
|
2594
|
+
MPI_Count outcount, MPI_Datatype datatype, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2595
|
+
int MPI_Unpack_external_c(const char datarep[], const void *inbuf, MPI_Count insize,
|
|
2596
|
+
MPI_Count *position, void *outbuf, MPI_Count outcount,
|
|
2597
|
+
MPI_Datatype datatype) MPICH_API_PUBLIC;
|
|
2598
|
+
int MPI_Bsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2599
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2600
|
+
int MPI_Bsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2601
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2602
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2603
|
+
int MPI_Buffer_attach_c(void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
2604
|
+
int MPI_Buffer_detach_c(void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2605
|
+
int MPI_Ibsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2606
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2607
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2608
|
+
int MPI_Imrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
2609
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2610
|
+
int MPI_Irecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2611
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2612
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2613
|
+
int MPI_Irsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2614
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2615
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2616
|
+
int MPI_Isend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2617
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2618
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2619
|
+
int MPI_Issend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2620
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2621
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2622
|
+
int MPI_Mrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
2623
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2624
|
+
int MPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2625
|
+
MPI_Comm comm, MPI_Status *status)
|
|
2626
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2627
|
+
int MPI_Recv_init_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2628
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2629
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2630
|
+
int MPI_Rsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2631
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2632
|
+
int MPI_Rsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2633
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2634
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2635
|
+
int MPI_Send_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2636
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2637
|
+
int MPI_Send_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2638
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2639
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2640
|
+
int MPI_Sendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, int dest,
|
|
2641
|
+
int sendtag, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2642
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2643
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
2644
|
+
int MPI_Sendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int sendtag,
|
|
2645
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2646
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2647
|
+
int MPI_Ssend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2648
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2649
|
+
int MPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2650
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2651
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2652
|
+
int MPI_Accumulate_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2653
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2654
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
2655
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2656
|
+
int MPI_Get_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2657
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2658
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
2659
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2660
|
+
int MPI_Get_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
2661
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
2662
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
2663
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
2664
|
+
MPI_Win win)
|
|
2665
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2666
|
+
int MPI_Put_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2667
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2668
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
2669
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2670
|
+
int MPI_Raccumulate_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2671
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2672
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win, MPI_Request *request)
|
|
2673
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2674
|
+
int MPI_Rget_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2675
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2676
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
2677
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2678
|
+
int MPI_Rget_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
2679
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
2680
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
2681
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
2682
|
+
MPI_Win win, MPI_Request *request)
|
|
2683
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2684
|
+
int MPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2685
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2686
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
2687
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2688
|
+
int PMPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2689
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2690
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2509
2691
|
int PMPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2510
2692
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2511
2693
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2512
|
-
int
|
|
2513
|
-
|
|
2694
|
+
int PMPI_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2695
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2696
|
+
MPI_Request *request)
|
|
2697
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2698
|
+
int PMPI_Allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2699
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2700
|
+
MPI_Info info, MPI_Request *request)
|
|
2701
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2702
|
+
int PMPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2703
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2704
|
+
MPI_Comm comm)
|
|
2705
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2706
|
+
int PMPI_Allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2707
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2708
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2514
2709
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2710
|
+
int PMPI_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2711
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2712
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2713
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2714
|
+
int PMPI_Allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2715
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2716
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2717
|
+
MPI_Request *request)
|
|
2718
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2719
|
+
int PMPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2720
|
+
MPI_Comm comm)
|
|
2721
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2515
2722
|
int PMPI_Allreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
int
|
|
2519
|
-
|
|
2723
|
+
MPI_Op op, MPI_Comm comm)
|
|
2724
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2725
|
+
int PMPI_Allreduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2726
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2727
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2728
|
+
int PMPI_Allreduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count,
|
|
2729
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2730
|
+
MPI_Request *request)
|
|
2520
2731
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2732
|
+
int PMPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2733
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2734
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2521
2735
|
int PMPI_Alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2522
2736
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2523
2737
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2738
|
+
int PMPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2739
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2740
|
+
MPI_Request *request)
|
|
2741
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2742
|
+
int PMPI_Alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2743
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2744
|
+
MPI_Info info, MPI_Request *request)
|
|
2745
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2746
|
+
int PMPI_Alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2747
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2748
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2749
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2524
2750
|
int PMPI_Alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2525
2751
|
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2526
2752
|
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2527
2753
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2754
|
+
int PMPI_Alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2755
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2756
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2757
|
+
MPI_Request *request)
|
|
2758
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2759
|
+
int PMPI_Alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2760
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2761
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2762
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2763
|
+
MPI_Request *request)
|
|
2764
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2765
|
+
int PMPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2766
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2767
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2768
|
+
MPICH_API_PUBLIC;
|
|
2528
2769
|
int PMPI_Alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2529
2770
|
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2530
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2771
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2772
|
+
MPICH_API_PUBLIC;
|
|
2773
|
+
int PMPI_Alltoallw_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2774
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2775
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2776
|
+
MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2777
|
+
int PMPI_Alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2778
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[], void *recvbuf,
|
|
2779
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2780
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
2781
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2782
|
+
int PMPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2783
|
+
int PMPI_Barrier_init(MPI_Comm comm, MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2784
|
+
int PMPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2785
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2531
2786
|
int PMPI_Bcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2532
2787
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2788
|
+
int PMPI_Bcast_init(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2789
|
+
MPI_Info info, MPI_Request *request)
|
|
2790
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2791
|
+
int PMPI_Bcast_init_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2792
|
+
MPI_Info info, MPI_Request *request)
|
|
2793
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2794
|
+
int PMPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2795
|
+
MPI_Comm comm)
|
|
2796
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2533
2797
|
int PMPI_Exscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2534
2798
|
MPI_Op op, MPI_Comm comm)
|
|
2535
2799
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2800
|
+
int PMPI_Exscan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2801
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2802
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2803
|
+
int PMPI_Exscan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2804
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2805
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2806
|
+
int PMPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2807
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2808
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2536
2809
|
int PMPI_Gather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2537
2810
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2538
2811
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2812
|
+
int PMPI_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2813
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2814
|
+
MPI_Request *request)
|
|
2815
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2816
|
+
int PMPI_Gather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2817
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2818
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2819
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2820
|
+
int PMPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2821
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2822
|
+
MPI_Comm comm)
|
|
2823
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2539
2824
|
int PMPI_Gatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2540
|
-
const MPI_Count
|
|
2541
|
-
MPI_Comm comm)
|
|
2825
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2826
|
+
int root, MPI_Comm comm)
|
|
2542
2827
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2543
|
-
int
|
|
2544
|
-
|
|
2828
|
+
int PMPI_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2829
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2830
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2831
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2832
|
+
int PMPI_Gatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2833
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2834
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2835
|
+
MPI_Request *request)
|
|
2836
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2837
|
+
int PMPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2838
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2839
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2840
|
+
int PMPI_Iallgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2841
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2545
2842
|
MPI_Request *request)
|
|
2546
2843
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2547
|
-
int
|
|
2548
|
-
|
|
2549
|
-
|
|
2844
|
+
int PMPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2845
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2846
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2847
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2848
|
+
int PMPI_Iallgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2849
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2850
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2550
2851
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2852
|
+
int PMPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2853
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2854
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2551
2855
|
int PMPI_Iallreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2552
2856
|
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2553
2857
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2858
|
+
int PMPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2859
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2860
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2554
2861
|
int PMPI_Ialltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2555
2862
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2556
2863
|
MPI_Request *request)
|
|
2557
2864
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2865
|
+
int PMPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2866
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2867
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2868
|
+
MPI_Request *request)
|
|
2869
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2558
2870
|
int PMPI_Ialltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2559
2871
|
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2560
2872
|
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2561
2873
|
MPI_Request *request)
|
|
2562
2874
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2875
|
+
int PMPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2876
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2877
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2878
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2563
2879
|
int PMPI_Ialltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2880
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2881
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2882
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2883
|
+
int PMPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2884
|
+
int PMPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2885
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2567
2886
|
int PMPI_Ibcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2568
2887
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2888
|
+
int PMPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2889
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2890
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2569
2891
|
int PMPI_Iexscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2570
2892
|
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2571
2893
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2894
|
+
int PMPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2895
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2896
|
+
MPI_Request *request)
|
|
2897
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2572
2898
|
int PMPI_Igather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2573
2899
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2574
2900
|
MPI_Request *request)
|
|
2575
2901
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2902
|
+
int PMPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2903
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2904
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2905
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2576
2906
|
int PMPI_Igatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2577
|
-
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2578
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2907
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2908
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2579
2909
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2910
|
+
int PMPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2911
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2912
|
+
MPI_Request *request)
|
|
2913
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2580
2914
|
int PMPI_Ineighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2581
2915
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2582
2916
|
MPI_Comm comm, MPI_Request *request)
|
|
2583
2917
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2918
|
+
int PMPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2919
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2920
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2921
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2584
2922
|
int PMPI_Ineighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2585
|
-
void *recvbuf, const MPI_Count recvcounts[],
|
|
2586
|
-
MPI_Datatype recvtype, MPI_Comm comm,
|
|
2587
|
-
|
|
2588
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2923
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2924
|
+
const MPI_Aint displs[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2925
|
+
MPI_Request *request)
|
|
2926
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2927
|
+
int PMPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2928
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2929
|
+
MPI_Request *request)
|
|
2930
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2589
2931
|
int PMPI_Ineighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2590
2932
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2591
2933
|
MPI_Comm comm, MPI_Request *request)
|
|
2592
2934
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2935
|
+
int PMPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2936
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2937
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2938
|
+
MPI_Request *request)
|
|
2939
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2593
2940
|
int PMPI_Ineighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2594
2941
|
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2595
2942
|
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2596
2943
|
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2597
2944
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2945
|
+
int PMPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
2946
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2947
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2948
|
+
MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2598
2949
|
int PMPI_Ineighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2599
2950
|
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2600
|
-
void *recvbuf, const MPI_Count recvcounts[],
|
|
2601
|
-
const
|
|
2951
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2952
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2953
|
+
MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2954
|
+
int PMPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2955
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2956
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2602
2957
|
int PMPI_Ireduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2603
2958
|
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
2604
2959
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2960
|
+
int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
2961
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2962
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2605
2963
|
int PMPI_Ireduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2606
2964
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2607
2965
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2966
|
+
int PMPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2967
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2968
|
+
MPI_Request *request)
|
|
2969
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2608
2970
|
int PMPI_Ireduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2609
2971
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2610
2972
|
MPI_Request *request)
|
|
2611
2973
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2974
|
+
int PMPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2975
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2976
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2612
2977
|
int PMPI_Iscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2613
2978
|
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2614
2979
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2980
|
+
int PMPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2981
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2982
|
+
MPI_Request *request)
|
|
2983
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2615
2984
|
int PMPI_Iscatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2616
2985
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2617
2986
|
MPI_Request *request)
|
|
2618
2987
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2988
|
+
int PMPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
2989
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2990
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2991
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2619
2992
|
int PMPI_Iscatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2620
|
-
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2621
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
2993
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2994
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request)
|
|
2622
2995
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2996
|
+
int PMPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2997
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2998
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2623
2999
|
int PMPI_Neighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2624
3000
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2625
3001
|
MPI_Comm comm)
|
|
2626
3002
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3003
|
+
int PMPI_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
3004
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
3005
|
+
MPI_Info info, MPI_Request *request)
|
|
3006
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3007
|
+
int PMPI_Neighbor_allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
3008
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
3009
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3010
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3011
|
+
int PMPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
3012
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
3013
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
3014
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2627
3015
|
int PMPI_Neighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2628
3016
|
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2629
3017
|
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2630
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2631
|
-
|
|
3018
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
3019
|
+
int PMPI_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
3020
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
3021
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
3022
|
+
MPI_Request *request)
|
|
3023
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
3024
|
+
int PMPI_Neighbor_allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
3025
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
3026
|
+
const MPI_Aint displs[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
3027
|
+
MPI_Info info, MPI_Request *request)
|
|
3028
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
3029
|
+
int PMPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
3030
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
3031
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2632
3032
|
int PMPI_Neighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2633
3033
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2634
3034
|
MPI_Comm comm)
|
|
2635
3035
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3036
|
+
int PMPI_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
3037
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
3038
|
+
MPI_Info info, MPI_Request *request)
|
|
3039
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3040
|
+
int PMPI_Neighbor_alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
3041
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
3042
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3043
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3044
|
+
int PMPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
3045
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
3046
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
3047
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2636
3048
|
int PMPI_Neighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2637
3049
|
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2638
3050
|
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2639
3051
|
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2640
3052
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2641
|
-
int
|
|
2642
|
-
|
|
2643
|
-
|
|
3053
|
+
int PMPI_Neighbor_alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
3054
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
3055
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
3056
|
+
MPI_Info info, MPI_Request *request)
|
|
3057
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
3058
|
+
int PMPI_Neighbor_alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
3059
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
3060
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
3061
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
3062
|
+
MPI_Request *request)
|
|
3063
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
3064
|
+
int PMPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
3065
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
3066
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
3067
|
+
MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3068
|
+
int PMPI_Neighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
3069
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
3070
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
3071
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3072
|
+
int PMPI_Neighbor_alltoallw_init(const void *sendbuf, const int sendcounts[],
|
|
3073
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
3074
|
+
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
3075
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
3076
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3077
|
+
int PMPI_Neighbor_alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
3078
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
3079
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
3080
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
3081
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3082
|
+
MPICH_API_PUBLIC;
|
|
3083
|
+
int PMPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
3084
|
+
int root, MPI_Comm comm)
|
|
3085
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2644
3086
|
int PMPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2645
3087
|
MPI_Op op, int root, MPI_Comm comm)
|
|
2646
3088
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3089
|
+
int PMPI_Reduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
3090
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3091
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3092
|
+
int PMPI_Reduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
3093
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3094
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3095
|
+
int PMPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
3096
|
+
MPI_Op op)
|
|
3097
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3098
|
+
int PMPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
3099
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
3100
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3101
|
+
int PMPI_Reduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
3102
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
3103
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3104
|
+
int PMPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
3105
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
3106
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2647
3107
|
int PMPI_Reduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2648
3108
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2649
3109
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3110
|
+
int PMPI_Reduce_scatter_block_init(const void *sendbuf, void *recvbuf, int recvcount,
|
|
3111
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
3112
|
+
MPI_Request *request)
|
|
3113
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3114
|
+
int PMPI_Reduce_scatter_block_init_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
3115
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
3116
|
+
MPI_Request *request)
|
|
3117
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3118
|
+
int PMPI_Reduce_scatter_init(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
3119
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
3120
|
+
MPI_Request *request)
|
|
3121
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3122
|
+
int PMPI_Reduce_scatter_init_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
3123
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
3124
|
+
MPI_Request *request)
|
|
3125
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3126
|
+
int PMPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
3127
|
+
MPI_Comm comm)
|
|
3128
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2650
3129
|
int PMPI_Scan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2651
3130
|
MPI_Op op, MPI_Comm comm)
|
|
2652
3131
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3132
|
+
int PMPI_Scan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
3133
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3134
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3135
|
+
int PMPI_Scan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
3136
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3137
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3138
|
+
int PMPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
3139
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
3140
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2653
3141
|
int PMPI_Scatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2654
3142
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2655
3143
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2656
|
-
int
|
|
2657
|
-
|
|
2658
|
-
|
|
3144
|
+
int PMPI_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
3145
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
3146
|
+
MPI_Request *request)
|
|
3147
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3148
|
+
int PMPI_Scatter_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
3149
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
3150
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3151
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3152
|
+
int PMPI_Scatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
3153
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
3154
|
+
int root, MPI_Comm comm)
|
|
3155
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
3156
|
+
int PMPI_Scatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
3157
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
3158
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2659
3159
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
int
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2670
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2671
|
-
int MPI_Imrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
2672
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2673
|
-
int MPI_Irecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2674
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2675
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2676
|
-
int MPI_Irsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2677
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2678
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2679
|
-
int MPI_Isend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2680
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2681
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2682
|
-
int MPI_Issend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2683
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2684
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2685
|
-
int MPI_Mrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
2686
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2687
|
-
int MPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2688
|
-
MPI_Comm comm, MPI_Status *status)
|
|
2689
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2690
|
-
int MPI_Recv_init_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2691
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2692
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2693
|
-
int MPI_Rsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2694
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2695
|
-
int MPI_Rsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2696
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2697
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2698
|
-
int MPI_Send_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2699
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2700
|
-
int MPI_Send_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2701
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2702
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2703
|
-
int MPI_Sendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, int dest,
|
|
2704
|
-
int sendtag, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2705
|
-
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2706
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
2707
|
-
int MPI_Sendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int sendtag,
|
|
2708
|
-
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2709
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2710
|
-
int MPI_Ssend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2711
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2712
|
-
int MPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2713
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2714
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3160
|
+
int PMPI_Scatterv_init(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
3161
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
3162
|
+
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3163
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
3164
|
+
int PMPI_Scatterv_init_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
3165
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
3166
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
3167
|
+
MPI_Request *request)
|
|
3168
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2715
3169
|
|
|
2716
3170
|
int PMPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
2717
3171
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
@@ -2823,6 +3277,116 @@ int PMPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, i
|
|
|
2823
3277
|
MPI_Comm comm, MPI_Request *request)
|
|
2824
3278
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2825
3279
|
|
|
3280
|
+
int PMPI_Get_count_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
3281
|
+
MPICH_API_PUBLIC;
|
|
3282
|
+
int PMPI_Get_elements_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
3283
|
+
MPICH_API_PUBLIC;
|
|
3284
|
+
int PMPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
3285
|
+
MPICH_API_PUBLIC;
|
|
3286
|
+
int PMPI_Pack_c(const void *inbuf, MPI_Count incount, MPI_Datatype datatype, void *outbuf,
|
|
3287
|
+
MPI_Count outsize, MPI_Count *position, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3288
|
+
int PMPI_Pack_external_c(const char *datarep, const void *inbuf, MPI_Count incount,
|
|
3289
|
+
MPI_Datatype datatype, void *outbuf, MPI_Count outsize,
|
|
3290
|
+
MPI_Count *position) MPICH_API_PUBLIC;
|
|
3291
|
+
int PMPI_Pack_external_size_c(const char *datarep, MPI_Count incount, MPI_Datatype datatype,
|
|
3292
|
+
MPI_Count *size) MPICH_API_PUBLIC;
|
|
3293
|
+
int PMPI_Pack_size_c(MPI_Count incount, MPI_Datatype datatype, MPI_Comm comm, MPI_Count *size)
|
|
3294
|
+
MPICH_API_PUBLIC;
|
|
3295
|
+
int PMPI_Status_set_elements_c(MPI_Status *status, MPI_Datatype datatype, MPI_Count count)
|
|
3296
|
+
MPICH_API_PUBLIC;
|
|
3297
|
+
int PMPI_Type_contiguous_c(MPI_Count count, MPI_Datatype oldtype, MPI_Datatype *newtype)
|
|
3298
|
+
MPICH_API_PUBLIC;
|
|
3299
|
+
int PMPI_Type_create_darray_c(int size, int rank, int ndims, const MPI_Count array_of_gsizes[],
|
|
3300
|
+
const int array_of_distribs[], const int array_of_dargs[],
|
|
3301
|
+
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
3302
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3303
|
+
int PMPI_Type_create_hindexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3304
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3305
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3306
|
+
int PMPI_Type_create_hindexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
3307
|
+
const MPI_Count array_of_displacements[],
|
|
3308
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype)
|
|
3309
|
+
MPICH_API_PUBLIC;
|
|
3310
|
+
int PMPI_Type_create_hvector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
3311
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3312
|
+
int PMPI_Type_create_indexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
3313
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3314
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3315
|
+
int PMPI_Type_create_resized_c(MPI_Datatype oldtype, MPI_Count lb, MPI_Count extent,
|
|
3316
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3317
|
+
int PMPI_Type_create_struct_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3318
|
+
const MPI_Count array_of_displacements[],
|
|
3319
|
+
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
3320
|
+
MPICH_API_PUBLIC;
|
|
3321
|
+
int PMPI_Type_create_subarray_c(int ndims, const MPI_Count array_of_sizes[],
|
|
3322
|
+
const MPI_Count array_of_subsizes[],
|
|
3323
|
+
const MPI_Count array_of_starts[], int order, MPI_Datatype oldtype,
|
|
3324
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3325
|
+
int PMPI_Type_get_contents_c(MPI_Datatype datatype, MPI_Count max_integers, MPI_Count max_addresses,
|
|
3326
|
+
MPI_Count max_large_counts, MPI_Count max_datatypes,
|
|
3327
|
+
int array_of_integers[], MPI_Aint array_of_addresses[],
|
|
3328
|
+
MPI_Count array_of_large_counts[], MPI_Datatype array_of_datatypes[])
|
|
3329
|
+
MPICH_API_PUBLIC;
|
|
3330
|
+
int PMPI_Type_get_envelope_c(MPI_Datatype datatype, MPI_Count *num_integers,
|
|
3331
|
+
MPI_Count *num_addresses, MPI_Count *num_large_counts,
|
|
3332
|
+
MPI_Count *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
3333
|
+
int PMPI_Type_get_extent_c(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
3334
|
+
MPICH_API_PUBLIC;
|
|
3335
|
+
int PMPI_Type_get_true_extent_c(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
3336
|
+
MPICH_API_PUBLIC;
|
|
3337
|
+
int PMPI_Type_indexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3338
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3339
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3340
|
+
int PMPI_Type_size_c(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
3341
|
+
int PMPI_Type_vector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
3342
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3343
|
+
int PMPI_Unpack_c(const void *inbuf, MPI_Count insize, MPI_Count *position, void *outbuf,
|
|
3344
|
+
MPI_Count outcount, MPI_Datatype datatype, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3345
|
+
int PMPI_Unpack_external_c(const char datarep[], const void *inbuf, MPI_Count insize,
|
|
3346
|
+
MPI_Count *position, void *outbuf, MPI_Count outcount,
|
|
3347
|
+
MPI_Datatype datatype) MPICH_API_PUBLIC;
|
|
3348
|
+
|
|
3349
|
+
int PMPI_Win_allocate_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3350
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
3351
|
+
int PMPI_Win_create_c(void *base, MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3352
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
3353
|
+
int PMPI_Win_shared_query_c(MPI_Win win, int rank, MPI_Aint *size, MPI_Aint *disp_unit,
|
|
3354
|
+
void *baseptr) MPICH_API_PUBLIC;
|
|
3355
|
+
int PMPI_Win_allocate_shared_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3356
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
3357
|
+
int PMPI_Get_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3358
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3359
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
3360
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3361
|
+
int PMPI_Get_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3362
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
3363
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
3364
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
3365
|
+
MPI_Win win)
|
|
3366
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3367
|
+
int PMPI_Put_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3368
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3369
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
3370
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3371
|
+
int PMPI_Raccumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3372
|
+
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
3373
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
3374
|
+
MPI_Request *request)
|
|
3375
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3376
|
+
int PMPI_Rget_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3377
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3378
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
3379
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3380
|
+
int PMPI_Rget_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3381
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
3382
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
3383
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
3384
|
+
MPI_Win win, MPI_Request *request)
|
|
3385
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3386
|
+
int PMPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3387
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3388
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
3389
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2826
3390
|
#endif /* MPI_BUILD_PROFILING */
|
|
2827
3391
|
/* End of MPI bindings */
|
|
2828
3392
|
|
|
@@ -2840,6 +3404,18 @@ int PMPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, i
|
|
|
2840
3404
|
|
|
2841
3405
|
#include "mpio.h"
|
|
2842
3406
|
|
|
3407
|
+
/* GPU extensions */
|
|
3408
|
+
#define MPIX_GPU_SUPPORT_CUDA (0)
|
|
3409
|
+
#define MPIX_GPU_SUPPORT_ZE (1)
|
|
3410
|
+
#define MPIX_GPU_SUPPORT_DEVICE_INITIATED (3)
|
|
3411
|
+
int MPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
3412
|
+
int MPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
3413
|
+
int MPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
3414
|
+
#ifdef MPI_BUILD_PROFILING
|
|
3415
|
+
int PMPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
3416
|
+
int PMPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
3417
|
+
int PMPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
3418
|
+
#endif
|
|
2843
3419
|
#if defined(__cplusplus)
|
|
2844
3420
|
}
|
|
2845
3421
|
/* Add the C++ bindings */
|