impi-devel 2021.13.1__py2.py3-none-win_amd64.whl → 2021.14.0__py2.py3-none-win_amd64.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.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpicc.bat +35 -4
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpicl.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpicxx.bat +1 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpif77.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpif90.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpifc.bat +8 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicc.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicpc.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicpx.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicx.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiifort.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiifx.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/include/mpi.h +1145 -1079
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/include/mpicxx.h +4 -4
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/lib/impi.lib +0 -0
- impi_devel-2021.14.0.data/data/share/doc/mpi/licensing/license.txt +72 -0
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/share/doc/mpi/licensing/third-party-programs.txt +1 -1
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/METADATA +2 -2
- impi_devel-2021.14.0.dist-info/RECORD +24 -0
- impi_devel-2021.13.1.data/data/share/doc/mpi/licensing/license.txt +0 -334
- impi_devel-2021.13.1.dist-info/RECORD +0 -24
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/include/mpio.h +0 -0
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/WHEEL +0 -0
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/top_level.txt +0 -0
|
@@ -477,6 +477,8 @@ typedef int MPI_Request;
|
|
|
477
477
|
/* MPI message objects for Mprobe and related functions */
|
|
478
478
|
typedef int MPI_Message;
|
|
479
479
|
|
|
480
|
+
typedef int MPIX_Grequest_class;
|
|
481
|
+
|
|
480
482
|
/* Definitions that are determined by configure. */
|
|
481
483
|
#ifdef MPI_AINT64_TYPE
|
|
482
484
|
#undef MPI_AINT64_TYPE
|
|
@@ -565,8 +567,8 @@ typedef int (MPI_Delete_function) ( MPI_Comm, int, void *, void * );
|
|
|
565
567
|
* digits for REV, 1 digit for EXT and 2 digits for EXT_NUMBER. So,
|
|
566
568
|
* 2019.0.0b0 will have the numeric version 20190000100.
|
|
567
569
|
*/
|
|
568
|
-
#define I_MPI_VERSION "2021.
|
|
569
|
-
#define I_MPI_NUMVERSION
|
|
570
|
+
#define I_MPI_VERSION "2021.14.0"
|
|
571
|
+
#define I_MPI_NUMVERSION 20211400300
|
|
570
572
|
|
|
571
573
|
/* for the datatype decoders */
|
|
572
574
|
enum MPIR_Combiner_enum {
|
|
@@ -607,6 +609,7 @@ typedef int MPI_Info;
|
|
|
607
609
|
#define MPI_DISTRIBUTE_DFLT_DARG -49767
|
|
608
610
|
|
|
609
611
|
#define MPI_IN_PLACE (void *) -1
|
|
612
|
+
#define MPI_BUFFER_AUTOMATIC (void *) -2
|
|
610
613
|
|
|
611
614
|
/* asserts for one-sided communication */
|
|
612
615
|
#define MPI_MODE_NOCHECK 1024
|
|
@@ -619,9 +622,11 @@ typedef int MPI_Info;
|
|
|
619
622
|
#define MPI_COMM_TYPE_SHARED 1
|
|
620
623
|
|
|
621
624
|
/* MPICH-specific types */
|
|
622
|
-
#define
|
|
625
|
+
#define MPI_COMM_TYPE_HW_GUIDED 2
|
|
626
|
+
#define MPI_COMM_TYPE_HW_UNGUIDED 3
|
|
627
|
+
#define MPI_COMM_TYPE_RESOURCE_GUIDED 4
|
|
623
628
|
|
|
624
|
-
#define
|
|
629
|
+
#define MPIX_COMM_TYPE_NEIGHBORHOOD 5
|
|
625
630
|
|
|
626
631
|
#ifdef MPICH_DEFINE_ATTR_TYPE_TYPES
|
|
627
632
|
static const MPI_Datatype mpich_mpi_aint MPICH_ATTR_TYPE_TAG(MPI_Aint) = MPI_AINT;
|
|
@@ -827,6 +832,12 @@ typedef struct {
|
|
|
827
832
|
MPI_Fint MPI_ERROR;
|
|
828
833
|
} MPI_F08_status;
|
|
829
834
|
|
|
835
|
+
/* MPI 4 added following constants to allow access F90 STATUS as an array of MPI_Fint */
|
|
836
|
+
#define MPI_F_STATUS_SIZE 5
|
|
837
|
+
#define MPI_F_SOURCE 2
|
|
838
|
+
#define MPI_F_TAG 3
|
|
839
|
+
#define MPI_F_ERROR 4
|
|
840
|
+
|
|
830
841
|
extern MPIU_DLL_SPEC MPI_F08_status MPIR_F08_MPI_STATUS_IGNORE_OBJ MPICH_API_PUBLIC;
|
|
831
842
|
extern MPIU_DLL_SPEC MPI_F08_status MPIR_F08_MPI_STATUSES_IGNORE_OBJ[1] MPICH_API_PUBLIC;
|
|
832
843
|
extern MPIU_DLL_SPEC int MPIR_F08_MPI_IN_PLACE MPICH_API_PUBLIC;
|
|
@@ -936,7 +947,9 @@ typedef int (MPIX_Grequest_wait_function)(int, void **, double, MPI_Status *);
|
|
|
936
947
|
be initialized */
|
|
937
948
|
#define MPI_T_ERR_INVALID_INDEX 62 /* The index is invalid or
|
|
938
949
|
has been deleted */
|
|
939
|
-
#define MPI_T_ERR_INVALID_ITEM 63 /* Item index queried is out of range
|
|
950
|
+
#define MPI_T_ERR_INVALID_ITEM 63 /* Item index queried is out of range.
|
|
951
|
+
Deprecated. If a queried item index is out of range,
|
|
952
|
+
MPI-4 will return MPI_T_ERR_INVALID_INDEX instead. */
|
|
940
953
|
#define MPI_T_ERR_INVALID_HANDLE 64 /* The handle is invalid */
|
|
941
954
|
#define MPI_T_ERR_OUT_OF_HANDLES 65 /* No more handles available */
|
|
942
955
|
#define MPI_T_ERR_OUT_OF_SESSIONS 66 /* No more sessions available */
|
|
@@ -951,6 +964,8 @@ typedef int (MPIX_Grequest_wait_function)(int, void **, double, MPI_Status *);
|
|
|
951
964
|
#define MPI_T_ERR_INVALID 74 /* Generic error code for MPI_T added in MPI-3.1 */
|
|
952
965
|
|
|
953
966
|
#define MPI_ERR_SESSION 75 /* Invalid session handle */
|
|
967
|
+
#define MPI_ERR_PROC_ABORTED 76 /* Trying to communicate with aborted processes */
|
|
968
|
+
#define MPI_ERR_VALUE_TOO_LARGE 77 /* Value is too large to store */
|
|
954
969
|
|
|
955
970
|
#define MPI_ERR_LASTCODE 0x3fffffff /* Last valid error code for a
|
|
956
971
|
predefined error class */
|
|
@@ -1005,43 +1020,6 @@ typedef struct {
|
|
|
1005
1020
|
#ifndef MPICH_SUPPRESS_PROTOTYPES
|
|
1006
1021
|
/* We require that the C compiler support prototypes */
|
|
1007
1022
|
/* Begin Prototypes */
|
|
1008
|
-
int MPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1009
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1010
|
-
int MPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1011
|
-
MPI_Comm comm, MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1012
|
-
int MPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1013
|
-
int MPI_Comm_create_from_group(MPI_Group group, const char *stringtag, MPI_Info info,
|
|
1014
|
-
MPI_Errhandler errhandler, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1015
|
-
int MPI_Group_from_session_pset(MPI_Session session, const char *pset_name, MPI_Group *newgroup)
|
|
1016
|
-
MPICH_API_PUBLIC;
|
|
1017
|
-
int MPI_Session_finalize(MPI_Session *session) MPICH_API_PUBLIC;
|
|
1018
|
-
int MPI_Session_get_info(MPI_Session session, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1019
|
-
int MPI_Session_get_nth_pset(MPI_Session session, MPI_Info info, int n, int *pset_len,
|
|
1020
|
-
char *pset_name) MPICH_API_PUBLIC;
|
|
1021
|
-
int MPI_Session_get_num_psets(MPI_Session session, MPI_Info info, int *npset_names)
|
|
1022
|
-
MPICH_API_PUBLIC;
|
|
1023
|
-
int MPI_Session_get_pset_info(MPI_Session session, const char *pset_name, MPI_Info *info)
|
|
1024
|
-
MPICH_API_PUBLIC;
|
|
1025
|
-
int MPI_Session_init(MPI_Info info, MPI_Errhandler errhandler, MPI_Session *session)
|
|
1026
|
-
MPICH_API_PUBLIC;
|
|
1027
|
-
int MPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1028
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1029
|
-
int MPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1030
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1031
|
-
int MPI_Rsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1032
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1033
|
-
int MPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
1034
|
-
int MPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1035
|
-
int MPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1036
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1037
|
-
int MPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1038
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1039
|
-
int MPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1040
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1041
|
-
int MPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1042
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1043
|
-
int MPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1044
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1045
1023
|
int MPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1046
1024
|
int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1047
1025
|
int MPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
@@ -1055,326 +1033,10 @@ int MPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
|
1055
1033
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1056
1034
|
int MPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1057
1035
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1058
|
-
int MPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1059
|
-
int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1060
1036
|
int MPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1061
1037
|
int MPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1062
|
-
int MPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1063
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1064
|
-
int MPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1065
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1066
|
-
int MPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1067
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1068
|
-
int MPI_Rsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1069
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1070
|
-
int MPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1071
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1072
1038
|
int MPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1073
1039
|
int MPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1074
|
-
int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest,
|
|
1075
|
-
int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1076
|
-
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
1077
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
1078
|
-
int MPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest,
|
|
1079
|
-
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
1080
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1081
|
-
int MPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1082
|
-
int MPI_Type_vector(int count, int blocklength, int stride, MPI_Datatype oldtype,
|
|
1083
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1084
|
-
int MPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1085
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1086
|
-
int MPI_Type_indexed(int count, const int *array_of_blocklengths,
|
|
1087
|
-
const int *array_of_displacements, MPI_Datatype oldtype,
|
|
1088
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1089
|
-
int MPI_Type_hindexed(int count, int *array_of_blocklengths,
|
|
1090
|
-
MPI_Aint *array_of_displacements, MPI_Datatype oldtype,
|
|
1091
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1092
|
-
int MPI_Type_struct(int count, int *array_of_blocklengths,
|
|
1093
|
-
MPI_Aint *array_of_displacements,
|
|
1094
|
-
MPI_Datatype *array_of_types, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1095
|
-
int MPI_Address(void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1096
|
-
int MPI_Type_extent(MPI_Datatype datatype, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1097
|
-
int MPI_Type_size(MPI_Datatype datatype, int *size) MPICH_API_PUBLIC;
|
|
1098
|
-
int MPI_Type_lb(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1099
|
-
int MPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1100
|
-
int MPI_Type_commit(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1101
|
-
int MPI_Type_free(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1102
|
-
int MPI_Get_elements(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1103
|
-
int MPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf,
|
|
1104
|
-
int outsize, int *position, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1105
|
-
int MPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1106
|
-
MPI_Datatype datatype, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1107
|
-
int MPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1108
|
-
int MPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1109
|
-
int MPI_Op_create_c(MPI_User_function_c *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1110
|
-
int MPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1111
|
-
int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1112
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1113
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1114
|
-
int MPI_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1115
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1116
|
-
MPI_Request *request)
|
|
1117
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1118
|
-
int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1119
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1120
|
-
MPI_Comm comm)
|
|
1121
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1122
|
-
int MPI_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1123
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1124
|
-
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1125
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1126
|
-
int MPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1127
|
-
MPI_Comm comm)
|
|
1128
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1129
|
-
int MPI_Allreduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1130
|
-
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1131
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1132
|
-
int MPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1133
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1134
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1135
|
-
int MPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1136
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1137
|
-
MPI_Request *request)
|
|
1138
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1139
|
-
int MPI_Alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1140
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int rdispls[],
|
|
1141
|
-
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1142
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1143
|
-
int MPI_Alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1144
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1145
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1146
|
-
MPI_Request *request)
|
|
1147
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1148
|
-
int MPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1149
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1150
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1151
|
-
MPICH_API_PUBLIC;
|
|
1152
|
-
int MPI_Alltoallw_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1153
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1154
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1155
|
-
MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1156
|
-
int MPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1157
|
-
int MPI_Barrier_init(MPI_Comm comm, MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1158
|
-
int MPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
1159
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1160
|
-
int MPI_Bcast_init(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1161
|
-
MPI_Info info, MPI_Request *request)
|
|
1162
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1163
|
-
int MPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1164
|
-
MPI_Comm comm)
|
|
1165
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1166
|
-
int MPI_Exscan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1167
|
-
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1168
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1169
|
-
int MPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1170
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1171
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1172
|
-
int MPI_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1173
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
1174
|
-
MPI_Request *request)
|
|
1175
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1176
|
-
int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1177
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1178
|
-
MPI_Comm comm)
|
|
1179
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1180
|
-
int MPI_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1181
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1182
|
-
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1183
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1184
|
-
int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1185
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1186
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1187
|
-
int MPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1188
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1189
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1190
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1191
|
-
int MPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1192
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1193
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1194
|
-
int MPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1195
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1196
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1197
|
-
int MPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1198
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1199
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1200
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1201
|
-
int MPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1202
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1203
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1204
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1205
|
-
int MPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1206
|
-
int MPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1207
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1208
|
-
int MPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1209
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1210
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1211
|
-
int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1212
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1213
|
-
MPI_Request *request)
|
|
1214
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1215
|
-
int MPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1216
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1217
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1218
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1219
|
-
int MPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1220
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1221
|
-
MPI_Request *request)
|
|
1222
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1223
|
-
int MPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1224
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1225
|
-
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1226
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1227
|
-
int MPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1228
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1229
|
-
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_Ineighbor_alltoallv(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,
|
|
1234
|
-
MPI_Request *request)
|
|
1235
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1236
|
-
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1237
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1238
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1239
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1240
|
-
int MPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1241
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
1242
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1243
|
-
int MPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1244
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1245
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1246
|
-
int MPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1247
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
1248
|
-
MPI_Request *request)
|
|
1249
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1250
|
-
int MPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1251
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1252
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1253
|
-
int MPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1254
|
-
int recvcount, MPI_Datatype recvtype, int root, 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_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1258
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1259
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
1260
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1261
|
-
int MPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1262
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1263
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1264
|
-
int MPI_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1265
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1266
|
-
MPI_Info info, MPI_Request *request)
|
|
1267
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1268
|
-
int MPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1269
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1270
|
-
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1271
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1272
|
-
int MPI_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1273
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1274
|
-
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1275
|
-
MPI_Request *request)
|
|
1276
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1277
|
-
int MPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1278
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1279
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1280
|
-
int MPI_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1281
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1282
|
-
MPI_Info info, MPI_Request *request)
|
|
1283
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1284
|
-
int MPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1285
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1286
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
1287
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1288
|
-
int MPI_Neighbor_alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1289
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1290
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1291
|
-
MPI_Info info, MPI_Request *request)
|
|
1292
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1293
|
-
int MPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1294
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1295
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1296
|
-
MPICH_API_PUBLIC;
|
|
1297
|
-
int MPI_Neighbor_alltoallw_init(const void *sendbuf, const int sendcounts[],
|
|
1298
|
-
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
1299
|
-
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
1300
|
-
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
1301
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1302
|
-
int MPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1303
|
-
int root, MPI_Comm comm)
|
|
1304
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1305
|
-
int MPI_Reduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1306
|
-
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1307
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1308
|
-
int MPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
1309
|
-
MPI_Op op)
|
|
1310
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1311
|
-
int MPI_Reduce_local_c(const void *inbuf, void *inoutbuf, MPI_Count count, MPI_Datatype datatype,
|
|
1312
|
-
MPI_Op op)
|
|
1313
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1314
|
-
int MPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1315
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1316
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1317
|
-
int MPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1318
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1319
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1320
|
-
int MPI_Reduce_scatter_block_init(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1321
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
1322
|
-
MPI_Request *request)
|
|
1323
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1324
|
-
int MPI_Reduce_scatter_init(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1325
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
1326
|
-
MPI_Request *request)
|
|
1327
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1328
|
-
int MPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1329
|
-
MPI_Comm comm)
|
|
1330
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1331
|
-
int MPI_Scan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1332
|
-
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1333
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1334
|
-
int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1335
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1336
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1337
|
-
int MPI_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1338
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
1339
|
-
MPI_Request *request)
|
|
1340
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1341
|
-
int MPI_Scatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1342
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1343
|
-
int root, MPI_Comm comm)
|
|
1344
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1345
|
-
int MPI_Scatterv_init(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1346
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1347
|
-
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1348
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1349
|
-
|
|
1350
|
-
int MPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1351
|
-
int MPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1352
|
-
int MPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1353
|
-
int ranks2[]) MPICH_API_PUBLIC;
|
|
1354
|
-
int MPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
1355
|
-
int MPI_Comm_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1356
|
-
int MPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1357
|
-
int MPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1358
|
-
int MPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1359
|
-
int MPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1360
|
-
int MPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1361
|
-
int MPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1362
|
-
int MPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1363
|
-
int MPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1364
|
-
int MPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1365
|
-
int MPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
1366
|
-
int MPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
1367
|
-
int MPI_Comm_dup(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1368
|
-
int MPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1369
|
-
int MPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1370
|
-
int MPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1371
|
-
int MPI_Comm_free(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1372
|
-
int MPI_Comm_test_inter(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1373
|
-
int MPI_Comm_remote_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1374
|
-
int MPI_Comm_remote_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1375
|
-
int MPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm,
|
|
1376
|
-
int remote_leader, int tag, MPI_Comm *newintercomm) MPICH_API_PUBLIC;
|
|
1377
|
-
int MPI_Intercomm_merge(MPI_Comm intercomm, int high, MPI_Comm *newintracomm) MPICH_API_PUBLIC;
|
|
1378
1040
|
int MPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn,
|
|
1379
1041
|
int *keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1380
1042
|
int MPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
@@ -1408,8 +1070,6 @@ int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBL
|
|
|
1408
1070
|
int MPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1409
1071
|
int MPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1410
1072
|
int MPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1411
|
-
double MPI_Wtime(void) MPICH_API_PUBLIC;
|
|
1412
|
-
double MPI_Wtick(void) MPICH_API_PUBLIC;
|
|
1413
1073
|
int MPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1414
1074
|
int MPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1415
1075
|
int MPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
@@ -1421,137 +1081,7 @@ int MPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
|
1421
1081
|
int MPI_DUP_FN(MPI_Comm oldcomm, int keyval, void *extra_state, void *attribute_val_in,
|
|
1422
1082
|
void *attribute_val_out, int *flag) MPICH_API_PUBLIC;
|
|
1423
1083
|
|
|
1424
|
-
/* Process Creation and Management */
|
|
1425
|
-
int MPI_Close_port(const char *port_name) MPICH_API_PUBLIC;
|
|
1426
|
-
int MPI_Comm_accept(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1427
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1428
|
-
int MPI_Comm_connect(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1429
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1430
|
-
int MPI_Comm_disconnect(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1431
|
-
int MPI_Comm_get_parent(MPI_Comm *parent) MPICH_API_PUBLIC;
|
|
1432
|
-
int MPI_Comm_join(int fd, MPI_Comm *intercomm) MPICH_API_PUBLIC;
|
|
1433
|
-
int MPI_Comm_spawn(const char *command, char *argv[], int maxprocs, MPI_Info info, int root,
|
|
1434
|
-
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1435
|
-
int MPI_Comm_spawn_multiple(int count, char *array_of_commands[], char **array_of_argv[],
|
|
1436
|
-
const int array_of_maxprocs[], const MPI_Info array_of_info[],
|
|
1437
|
-
int root, MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1438
|
-
int MPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1439
|
-
int MPI_Open_port(MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1440
|
-
int MPI_Publish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1441
|
-
int MPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1442
|
-
int MPI_Comm_set_info(MPI_Comm comm, MPI_Info info) MPICH_API_PUBLIC;
|
|
1443
|
-
int MPI_Comm_get_info(MPI_Comm comm, MPI_Info *info) MPICH_API_PUBLIC;
|
|
1444
|
-
|
|
1445
|
-
/* One-Sided Communications */
|
|
1446
|
-
int MPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1447
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1448
|
-
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1449
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1450
|
-
int MPI_Get(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1451
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1452
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1453
|
-
int MPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1454
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1455
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1456
|
-
|
|
1457
|
-
int MPIX_Get_notify(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1458
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1459
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1460
|
-
int MPIX_Put_notify(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1461
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1462
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1463
|
-
|
|
1464
|
-
int MPIX_Get_notify_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
1465
|
-
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
1466
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1467
|
-
int MPIX_Put_notify_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
1468
|
-
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
1469
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1470
|
-
int MPI_Win_complete(MPI_Win win) MPICH_API_PUBLIC;
|
|
1471
|
-
int MPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1472
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1473
|
-
int MPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1474
|
-
int MPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
1475
|
-
int MPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1476
|
-
int MPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1477
|
-
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1478
|
-
int MPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1479
|
-
int MPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
1480
|
-
int MPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1481
|
-
int MPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
1482
|
-
int MPI_Win_allocate_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1483
|
-
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1484
|
-
int MPI_Win_allocate_shared_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1485
|
-
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1486
|
-
int MPI_Win_create_c(void *base, MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1487
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1488
|
-
int MPI_Win_shared_query_c(MPI_Win win, int rank, MPI_Aint *size, MPI_Aint *disp_unit,
|
|
1489
|
-
void *baseptr) MPICH_API_PUBLIC;
|
|
1490
|
-
|
|
1491
|
-
/* MPI-3 One-Sided Communication Routines */
|
|
1492
|
-
int MPI_Win_allocate(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, void *baseptr,
|
|
1493
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1494
|
-
int MPI_Win_allocate_shared(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1495
|
-
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1496
|
-
int MPI_Win_shared_query(MPI_Win win, int rank, MPI_Aint *size, int *disp_unit, void *baseptr) MPICH_API_PUBLIC;
|
|
1497
|
-
int MPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1498
|
-
int MPI_Win_attach(MPI_Win win, void *base, MPI_Aint size) MPICH_API_PUBLIC;
|
|
1499
|
-
int MPI_Win_detach(MPI_Win win, const void *base) MPICH_API_PUBLIC;
|
|
1500
|
-
int MPI_Win_get_info(MPI_Win win, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1501
|
-
int MPI_Win_set_info(MPI_Win win, MPI_Info info) MPICH_API_PUBLIC;
|
|
1502
|
-
int MPI_Get_accumulate(const void *origin_addr, int origin_count,
|
|
1503
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
1504
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
1505
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1506
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1507
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1508
|
-
int MPI_Fetch_and_op(const void *origin_addr, void *result_addr,
|
|
1509
|
-
MPI_Datatype datatype, int target_rank, MPI_Aint target_disp,
|
|
1510
|
-
MPI_Op op, MPI_Win win)
|
|
1511
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1512
|
-
int MPI_Compare_and_swap(const void *origin_addr, const void *compare_addr,
|
|
1513
|
-
void *result_addr, MPI_Datatype datatype, int target_rank,
|
|
1514
|
-
MPI_Aint target_disp, MPI_Win win)
|
|
1515
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1516
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4)
|
|
1517
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,4) MPICH_API_PUBLIC;
|
|
1518
|
-
int MPI_Rput(const void *origin_addr, int origin_count,
|
|
1519
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1520
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1521
|
-
MPI_Request *request)
|
|
1522
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1523
|
-
int MPI_Rget(void *origin_addr, int origin_count,
|
|
1524
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1525
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1526
|
-
MPI_Request *request)
|
|
1527
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1528
|
-
int MPI_Raccumulate(const void *origin_addr, int origin_count,
|
|
1529
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1530
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
1531
|
-
MPI_Request *request)
|
|
1532
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1533
|
-
int MPI_Rget_accumulate(const void *origin_addr, int origin_count,
|
|
1534
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
1535
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
1536
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
1537
|
-
MPI_Request *request)
|
|
1538
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1539
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1540
|
-
int MPI_Win_lock_all(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1541
|
-
int MPI_Win_unlock_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1542
|
-
int MPI_Win_flush(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1543
|
-
int MPI_Win_flush_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1544
|
-
int MPI_Win_flush_local(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1545
|
-
int MPI_Win_flush_local_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1546
|
-
int MPI_Win_sync(MPI_Win win) MPICH_API_PUBLIC;
|
|
1547
|
-
|
|
1548
1084
|
/* MPI notification extentions */
|
|
1549
|
-
int MPIX_Win_create_notify(MPI_Win win, int notification_num) MPICH_API_PUBLIC;
|
|
1550
|
-
int MPIX_Win_free_notify(MPI_Win win) MPICH_API_PUBLIC;
|
|
1551
|
-
int MPIX_Win_get_notify(MPI_Win win, int notification_idx, MPI_Count *notification) MPICH_API_PUBLIC;
|
|
1552
|
-
int MPIX_Win_set_notify(MPI_Win win, int notification_idx, MPI_Count notification) MPICH_API_PUBLIC;
|
|
1553
|
-
int MPIX_Win_get_notify_request(MPI_Win win, int notification_idx, MPI_Count expected_value, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1554
|
-
|
|
1555
1085
|
/* External Interfaces */
|
|
1556
1086
|
int MPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
1557
1087
|
int MPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
@@ -1563,9 +1093,7 @@ int MPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
|
1563
1093
|
int MPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
1564
1094
|
int MPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
1565
1095
|
int MPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1566
|
-
int MPI_Comm_get_name(MPI_Comm comm, char *comm_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1567
1096
|
int MPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1568
|
-
int MPI_Comm_set_name(MPI_Comm comm, const char *comm_name) MPICH_API_PUBLIC;
|
|
1569
1097
|
int MPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
1570
1098
|
int MPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
1571
1099
|
int MPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
@@ -1575,23 +1103,13 @@ int MPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH_
|
|
|
1575
1103
|
int MPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
1576
1104
|
int MPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
1577
1105
|
int MPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
1578
|
-
int MPI_Status_set_elements(MPI_Status *status, MPI_Datatype datatype, int count) MPICH_API_PUBLIC;
|
|
1579
1106
|
int MPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
1580
1107
|
MPI_Type_delete_attr_function *type_delete_attr_fn,
|
|
1581
1108
|
int *type_keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1582
1109
|
int MPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
1583
|
-
int MPI_Type_dup(MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1584
1110
|
int MPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
1585
1111
|
int MPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1586
|
-
int MPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
|
|
1587
|
-
int max_datatypes, int array_of_integers[],
|
|
1588
|
-
MPI_Aint array_of_addresses[], MPI_Datatype array_of_datatypes[]) MPICH_API_PUBLIC;
|
|
1589
|
-
int MPI_Type_get_envelope(MPI_Datatype datatype, int *num_integers, int *num_addresses,
|
|
1590
|
-
int *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
1591
|
-
int MPI_Type_get_name(MPI_Datatype datatype, char *type_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1592
1112
|
int MPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1593
|
-
int MPI_Type_set_name(MPI_Datatype datatype, const char *type_name) MPICH_API_PUBLIC;
|
|
1594
|
-
int MPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1595
1113
|
int MPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
1596
1114
|
int MPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
1597
1115
|
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
@@ -1599,11 +1117,8 @@ int MPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
|
1599
1117
|
int MPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
1600
1118
|
int MPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
1601
1119
|
int MPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1602
|
-
int MPI_Win_get_name(MPI_Win win, char *win_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1603
1120
|
int MPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1604
|
-
int MPI_Win_set_name(MPI_Win win, const char *win_name) MPICH_API_PUBLIC;
|
|
1605
1121
|
|
|
1606
|
-
int MPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr) MPICH_API_PUBLIC;
|
|
1607
1122
|
int MPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1608
1123
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1609
1124
|
int MPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -1612,14 +1127,7 @@ int MPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn,
|
|
|
1612
1127
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1613
1128
|
int MPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1614
1129
|
int MPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1615
|
-
int MPI_Session_call_errhandler(MPI_Session session, int errorcode) MPICH_API_PUBLIC;
|
|
1616
|
-
int MPI_Session_create_errhandler(MPI_Session_errhandler_function *session_errhandler_fn,
|
|
1617
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1618
|
-
int MPI_Session_get_errhandler(MPI_Session session, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1619
|
-
int MPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1620
1130
|
int MPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
1621
|
-
int MPI_Free_mem(void *base) MPICH_API_PUBLIC;
|
|
1622
|
-
int MPI_Get_address(const void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1623
1131
|
int MPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1624
1132
|
int MPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
1625
1133
|
int MPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
@@ -1629,41 +1137,9 @@ int MPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
|
1629
1137
|
int MPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
1630
1138
|
int MPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag) MPICH_API_PUBLIC;
|
|
1631
1139
|
int MPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
1632
|
-
int MPI_Pack_external(const char datarep[], const void *inbuf, int incount,
|
|
1633
|
-
MPI_Datatype datatype, void *outbuf, MPI_Aint outsize, MPI_Aint *position)
|
|
1634
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1635
|
-
int MPI_Pack_external_size(const char datarep[], int incount, MPI_Datatype datatype,
|
|
1636
|
-
MPI_Aint *size) MPICH_API_PUBLIC;
|
|
1637
1140
|
int MPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1638
1141
|
int MPI_Status_c2f(const MPI_Status *c_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
1639
1142
|
int MPI_Status_f2c(const MPI_Fint *f_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
1640
|
-
int MPI_Type_create_darray(int size, int rank, int ndims, const int array_of_gsizes[],
|
|
1641
|
-
const int array_of_distribs[], const int array_of_dargs[],
|
|
1642
|
-
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
1643
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1644
|
-
int MPI_Type_create_hindexed(int count, const int array_of_blocklengths[],
|
|
1645
|
-
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
1646
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1647
|
-
int MPI_Type_create_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1648
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1649
|
-
int MPI_Type_create_indexed_block(int count, int blocklength, const int array_of_displacements[],
|
|
1650
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1651
|
-
int MPI_Type_create_hindexed_block(int count, int blocklength,
|
|
1652
|
-
const MPI_Aint array_of_displacements[],
|
|
1653
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1654
|
-
int MPI_Type_create_resized(MPI_Datatype oldtype, MPI_Aint lb, MPI_Aint extent,
|
|
1655
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1656
|
-
int MPI_Type_create_struct(int count, const int array_of_blocklengths[],
|
|
1657
|
-
const MPI_Aint array_of_displacements[],
|
|
1658
|
-
const MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1659
|
-
int MPI_Type_create_subarray(int ndims, const int array_of_sizes[],
|
|
1660
|
-
const int array_of_subsizes[], const int array_of_starts[],
|
|
1661
|
-
int order, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1662
|
-
int MPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1663
|
-
int MPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint *true_extent) MPICH_API_PUBLIC;
|
|
1664
|
-
int MPI_Unpack_external(const char datarep[], const void *inbuf, MPI_Aint insize,
|
|
1665
|
-
MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype)
|
|
1666
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1667
1143
|
int MPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
1668
1144
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1669
1145
|
int MPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -1676,7 +1152,6 @@ int MPI_Type_create_f90_integer(int range, MPI_Datatype *newtype) MPICH_API_PUBL
|
|
|
1676
1152
|
int MPI_Type_create_f90_real(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1677
1153
|
int MPI_Type_create_f90_complex(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1678
1154
|
|
|
1679
|
-
int MPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
1680
1155
|
int MPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
1681
1156
|
const int sourceweights[], int outdegree,
|
|
1682
1157
|
const int destinations[], const int destweights[],
|
|
@@ -1688,31 +1163,6 @@ int MPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree,
|
|
|
1688
1163
|
int MPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
1689
1164
|
int maxoutdegree, int destinations[], int destweights[]) MPICH_API_PUBLIC;
|
|
1690
1165
|
|
|
1691
|
-
/* Matched probe functionality */
|
|
1692
|
-
int MPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message,
|
|
1693
|
-
MPI_Status *status) MPICH_API_PUBLIC;
|
|
1694
|
-
int MPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
1695
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1696
|
-
int MPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1697
|
-
int MPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
1698
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1699
|
-
|
|
1700
|
-
/* Nonblocking collectives */
|
|
1701
|
-
int MPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1702
|
-
|
|
1703
|
-
/* Shared memory */
|
|
1704
|
-
int MPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1705
|
-
|
|
1706
|
-
/* MPI-3 "large count" routines */
|
|
1707
|
-
int MPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count) MPICH_API_PUBLIC;
|
|
1708
|
-
int MPI_Status_set_elements_x(MPI_Status *status, MPI_Datatype datatype, MPI_Count count) MPICH_API_PUBLIC;
|
|
1709
|
-
int MPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
1710
|
-
int MPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
1711
|
-
int MPI_Type_size_x(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
1712
|
-
|
|
1713
|
-
/* Noncollective communicator creation */
|
|
1714
|
-
int MPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1715
|
-
|
|
1716
1166
|
/* MPI_Aint addressing arithmetic */
|
|
1717
1167
|
MPI_Aint MPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
1718
1168
|
MPI_Aint MPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
@@ -1762,58 +1212,12 @@ int MPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
|
1762
1212
|
/* End Skip Prototypes */
|
|
1763
1213
|
|
|
1764
1214
|
|
|
1765
|
-
/* Non-standard but public extensions to MPI */
|
|
1766
|
-
/* Fault Tolerance Extensions */
|
|
1767
|
-
int MPIX_Comm_failure_ack(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1768
|
-
int MPIX_Comm_failure_get_acked(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
1769
|
-
int MPIX_Comm_revoke(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1770
|
-
int MPIX_Comm_shrink(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1771
|
-
int MPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
/* End Prototypes */
|
|
1775
1215
|
#endif /* MPICH_SUPPRESS_PROTOTYPES */
|
|
1776
1216
|
|
|
1777
1217
|
|
|
1778
1218
|
/* Here are the bindings of the profiling routines */
|
|
1219
|
+
/* Begin Skip Prototypes */
|
|
1779
1220
|
#if !defined(MPI_BUILD_PROFILING)
|
|
1780
|
-
int PMPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1781
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1782
|
-
int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1783
|
-
MPI_Comm comm, MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1784
|
-
int PMPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1785
|
-
int PMPI_Comm_create_from_group(MPI_Group group, const char *stringtag, MPI_Info info,
|
|
1786
|
-
MPI_Errhandler errhandler, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1787
|
-
int PMPI_Group_from_session_pset(MPI_Session session, const char *pset_name, MPI_Group *newgroup)
|
|
1788
|
-
MPICH_API_PUBLIC;
|
|
1789
|
-
int PMPI_Session_finalize(MPI_Session *session) MPICH_API_PUBLIC;
|
|
1790
|
-
int PMPI_Session_get_info(MPI_Session session, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1791
|
-
int PMPI_Session_get_nth_pset(MPI_Session session, MPI_Info info, int n, int *pset_len,
|
|
1792
|
-
char *pset_name) MPICH_API_PUBLIC;
|
|
1793
|
-
int PMPI_Session_get_num_psets(MPI_Session session, MPI_Info info, int *npset_names)
|
|
1794
|
-
MPICH_API_PUBLIC;
|
|
1795
|
-
int PMPI_Session_get_pset_info(MPI_Session session, const char *pset_name, MPI_Info *info)
|
|
1796
|
-
MPICH_API_PUBLIC;
|
|
1797
|
-
int PMPI_Session_init(MPI_Info info, MPI_Errhandler errhandler, MPI_Session *session)
|
|
1798
|
-
MPICH_API_PUBLIC;
|
|
1799
|
-
int PMPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1800
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1801
|
-
int PMPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1802
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1803
|
-
int PMPI_Rsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1804
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1805
|
-
int PMPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
1806
|
-
int PMPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1807
|
-
int PMPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1808
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1809
|
-
int PMPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1810
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1811
|
-
int PMPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1812
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1813
|
-
int PMPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1814
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1815
|
-
int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1816
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1817
1221
|
int PMPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1818
1222
|
int PMPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1819
1223
|
int PMPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
@@ -1827,88 +1231,10 @@ int PMPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
|
1827
1231
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1828
1232
|
int PMPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1829
1233
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1830
|
-
int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1831
|
-
int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1832
1234
|
int PMPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1833
1235
|
int PMPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1834
|
-
int PMPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1835
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1836
|
-
int PMPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1837
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1838
|
-
int PMPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1839
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1840
|
-
int PMPI_Rsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1841
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1842
|
-
int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1843
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1844
1236
|
int PMPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1845
1237
|
int PMPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1846
|
-
int PMPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest,
|
|
1847
|
-
int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1848
|
-
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
1849
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1850
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
1851
|
-
int PMPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest,
|
|
1852
|
-
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
1853
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1854
|
-
int PMPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1855
|
-
int PMPI_Type_vector(int count, int blocklength, int stride, MPI_Datatype oldtype,
|
|
1856
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1857
|
-
int PMPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1858
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1859
|
-
int PMPI_Type_indexed(int count, const int *array_of_blocklengths,
|
|
1860
|
-
const int *array_of_displacements, MPI_Datatype oldtype,
|
|
1861
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1862
|
-
int PMPI_Type_hindexed(int count, int *array_of_blocklengths,
|
|
1863
|
-
MPI_Aint *array_of_displacements, MPI_Datatype oldtype,
|
|
1864
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1865
|
-
int PMPI_Type_struct(int count, int *array_of_blocklengths,
|
|
1866
|
-
MPI_Aint *array_of_displacements,
|
|
1867
|
-
MPI_Datatype *array_of_types, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1868
|
-
int PMPI_Address(void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1869
|
-
int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1870
|
-
int PMPI_Type_size(MPI_Datatype datatype, int *size) MPICH_API_PUBLIC;
|
|
1871
|
-
int PMPI_Type_lb(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1872
|
-
int PMPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1873
|
-
int PMPI_Type_commit(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1874
|
-
int PMPI_Type_free(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1875
|
-
int PMPI_Get_elements(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1876
|
-
int PMPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf,
|
|
1877
|
-
int outsize, int *position, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1878
|
-
int PMPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1879
|
-
MPI_Datatype datatype, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1880
|
-
int PMPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1881
|
-
int PMPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1882
|
-
int PMPI_Op_create_c(MPI_User_function_c *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1883
|
-
int PMPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1884
|
-
int PMPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1885
|
-
int PMPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1886
|
-
int PMPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1887
|
-
int ranks2[]) MPICH_API_PUBLIC;
|
|
1888
|
-
int PMPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
1889
|
-
int PMPI_Comm_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1890
|
-
int PMPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1891
|
-
int PMPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1892
|
-
int PMPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1893
|
-
int PMPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1894
|
-
int PMPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1895
|
-
int PMPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1896
|
-
int PMPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1897
|
-
int PMPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1898
|
-
int PMPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1899
|
-
int PMPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
1900
|
-
int PMPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
1901
|
-
int PMPI_Comm_dup(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1902
|
-
int PMPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1903
|
-
int PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1904
|
-
int PMPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1905
|
-
int PMPI_Comm_free(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1906
|
-
int PMPI_Comm_test_inter(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1907
|
-
int PMPI_Comm_remote_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1908
|
-
int PMPI_Comm_remote_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1909
|
-
int PMPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm,
|
|
1910
|
-
int remote_leader, int tag, MPI_Comm *newintercomm) MPICH_API_PUBLIC;
|
|
1911
|
-
int PMPI_Intercomm_merge(MPI_Comm intercomm, int high, MPI_Comm *newintracomm) MPICH_API_PUBLIC;
|
|
1912
1238
|
int PMPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn,
|
|
1913
1239
|
int *keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1914
1240
|
int PMPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
@@ -1942,8 +1268,6 @@ int PMPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUB
|
|
|
1942
1268
|
int PMPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1943
1269
|
int PMPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1944
1270
|
int PMPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1945
|
-
double PMPI_Wtime(void) MPICH_API_PUBLIC;
|
|
1946
|
-
double PMPI_Wtick(void) MPICH_API_PUBLIC;
|
|
1947
1271
|
int PMPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1948
1272
|
int PMPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1949
1273
|
int PMPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
@@ -1953,129 +1277,8 @@ int PMPI_Abort(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
|
1953
1277
|
stdargs are supported */
|
|
1954
1278
|
int PMPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
1955
1279
|
|
|
1956
|
-
/* Process Creation and Management */
|
|
1957
|
-
int PMPI_Close_port(const char *port_name) MPICH_API_PUBLIC;
|
|
1958
|
-
int PMPI_Comm_accept(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1959
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1960
|
-
int PMPI_Comm_connect(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1961
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1962
|
-
int PMPI_Comm_disconnect(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1963
|
-
int PMPI_Comm_get_parent(MPI_Comm *parent) MPICH_API_PUBLIC;
|
|
1964
|
-
int PMPI_Comm_join(int fd, MPI_Comm *intercomm) MPICH_API_PUBLIC;
|
|
1965
|
-
int PMPI_Comm_spawn(const char *command, char *argv[], int maxprocs, MPI_Info info, int root,
|
|
1966
|
-
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1967
|
-
int PMPI_Comm_spawn_multiple(int count, char *array_of_commands[], char **array_of_argv[],
|
|
1968
|
-
const int array_of_maxprocs[], const MPI_Info array_of_info[],
|
|
1969
|
-
int root, MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1970
|
-
int PMPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1971
|
-
int PMPI_Open_port(MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1972
|
-
int PMPI_Publish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1973
|
-
int PMPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1974
|
-
int PMPI_Comm_set_info(MPI_Comm comm, MPI_Info info) MPICH_API_PUBLIC;
|
|
1975
|
-
int PMPI_Comm_get_info(MPI_Comm comm, MPI_Info *info) MPICH_API_PUBLIC;
|
|
1976
|
-
|
|
1977
|
-
/* One-Sided Communications */
|
|
1978
|
-
int PMPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1979
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1980
|
-
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1981
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1982
|
-
int PMPI_Get(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1983
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1984
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1985
|
-
int PMPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1986
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1987
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1988
|
-
|
|
1989
|
-
int PMPIX_Get_notify(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1990
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1991
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1992
|
-
int PMPIX_Put_notify(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1993
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1994
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1995
|
-
|
|
1996
|
-
int PMPIX_Get_notify_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
1997
|
-
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
1998
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1999
|
-
int PMPIX_Put_notify_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2000
|
-
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2001
|
-
MPI_Datatype target_datatype, int notification_idx, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2002
|
-
|
|
2003
|
-
int PMPI_Win_complete(MPI_Win win) MPICH_API_PUBLIC;
|
|
2004
|
-
int PMPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
2005
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
2006
|
-
int PMPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
2007
|
-
int PMPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
2008
|
-
int PMPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
2009
|
-
int PMPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
2010
|
-
int PMPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
2011
|
-
int PMPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
2012
|
-
int PMPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
2013
|
-
int PMPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
2014
|
-
int PMPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
2015
|
-
|
|
2016
1280
|
/* MPI-3 One-Sided Communication Routines */
|
|
2017
|
-
int PMPI_Win_allocate(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, void *baseptr,
|
|
2018
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
2019
|
-
int PMPI_Win_allocate_shared(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
2020
|
-
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
2021
|
-
int PMPI_Win_shared_query(MPI_Win win, int rank, MPI_Aint *size, int *disp_unit, void *baseptr) MPICH_API_PUBLIC;
|
|
2022
|
-
int PMPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win) MPICH_API_PUBLIC;
|
|
2023
|
-
int PMPI_Win_attach(MPI_Win win, void *base, MPI_Aint size) MPICH_API_PUBLIC;
|
|
2024
|
-
int PMPI_Win_detach(MPI_Win win, const void *base) MPICH_API_PUBLIC;
|
|
2025
|
-
int PMPI_Win_get_info(MPI_Win win, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
2026
|
-
int PMPI_Win_set_info(MPI_Win win, MPI_Info info) MPICH_API_PUBLIC;
|
|
2027
|
-
int PMPI_Get_accumulate(const void *origin_addr, int origin_count,
|
|
2028
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
2029
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
2030
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
2031
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2032
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2033
|
-
int PMPI_Fetch_and_op(const void *origin_addr, void *result_addr,
|
|
2034
|
-
MPI_Datatype datatype, int target_rank, MPI_Aint target_disp,
|
|
2035
|
-
MPI_Op op, MPI_Win win)
|
|
2036
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2037
|
-
int PMPI_Compare_and_swap(const void *origin_addr, const void *compare_addr,
|
|
2038
|
-
void *result_addr, MPI_Datatype datatype, int target_rank,
|
|
2039
|
-
MPI_Aint target_disp, MPI_Win win)
|
|
2040
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2041
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4)
|
|
2042
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,4) MPICH_API_PUBLIC;
|
|
2043
|
-
int PMPI_Rput(const void *origin_addr, int origin_count,
|
|
2044
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
2045
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
2046
|
-
MPI_Request *request)
|
|
2047
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2048
|
-
int PMPI_Rget(void *origin_addr, int origin_count,
|
|
2049
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
2050
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
2051
|
-
MPI_Request *request)
|
|
2052
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2053
|
-
int PMPI_Raccumulate(const void *origin_addr, int origin_count,
|
|
2054
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
2055
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
2056
|
-
MPI_Request *request)
|
|
2057
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2058
|
-
int PMPI_Rget_accumulate(const void *origin_addr, int origin_count,
|
|
2059
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
2060
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
2061
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
2062
|
-
MPI_Request *request)
|
|
2063
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2064
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2065
|
-
int PMPI_Win_lock_all(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
2066
|
-
int PMPI_Win_unlock_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
2067
|
-
int PMPI_Win_flush(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
2068
|
-
int PMPI_Win_flush_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
2069
|
-
int PMPI_Win_flush_local(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
2070
|
-
int PMPI_Win_flush_local_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
2071
|
-
int PMPI_Win_sync(MPI_Win win) MPICH_API_PUBLIC;
|
|
2072
|
-
|
|
2073
1281
|
/* MPI notification extentions */
|
|
2074
|
-
int PMPIX_Win_create_notify(MPI_Win win, int notification_num) MPICH_API_PUBLIC;
|
|
2075
|
-
int PMPIX_Win_free_notify(MPI_Win win) MPICH_API_PUBLIC;
|
|
2076
|
-
int PMPIX_Win_get_notify(MPI_Win win, int notification_idx, MPI_Count *notification) MPICH_API_PUBLIC;
|
|
2077
|
-
int PMPIX_Win_set_notify(MPI_Win win, int notification_idx, MPI_Count notification) MPICH_API_PUBLIC;
|
|
2078
|
-
int PMPIX_Win_get_notify_request(MPI_Win win, int notification_idx, MPI_Count expected_value, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2079
1282
|
/* External Interfaces */
|
|
2080
1283
|
int PMPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
2081
1284
|
int PMPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
@@ -2087,9 +1290,7 @@ int PMPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
|
2087
1290
|
int PMPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
2088
1291
|
int PMPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
2089
1292
|
int PMPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
2090
|
-
int PMPI_Comm_get_name(MPI_Comm comm, char *comm_name, int *resultlen) MPICH_API_PUBLIC;
|
|
2091
1293
|
int PMPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
2092
|
-
int PMPI_Comm_set_name(MPI_Comm comm, const char *comm_name) MPICH_API_PUBLIC;
|
|
2093
1294
|
int PMPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
2094
1295
|
int PMPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
2095
1296
|
int PMPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
@@ -2099,23 +1300,13 @@ int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH
|
|
|
2099
1300
|
int PMPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
2100
1301
|
int PMPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
2101
1302
|
int PMPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
2102
|
-
int PMPI_Status_set_elements(MPI_Status *status, MPI_Datatype datatype, int count) MPICH_API_PUBLIC;
|
|
2103
1303
|
int PMPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
2104
1304
|
MPI_Type_delete_attr_function *type_delete_attr_fn,
|
|
2105
1305
|
int *type_keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
2106
1306
|
int PMPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
2107
|
-
int PMPI_Type_dup(MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2108
1307
|
int PMPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
2109
1308
|
int PMPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
2110
|
-
int PMPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
|
|
2111
|
-
int max_datatypes, int array_of_integers[],
|
|
2112
|
-
MPI_Aint array_of_addresses[], MPI_Datatype array_of_datatypes[]) MPICH_API_PUBLIC;
|
|
2113
|
-
int PMPI_Type_get_envelope(MPI_Datatype datatype, int *num_integers, int *num_addresses,
|
|
2114
|
-
int *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
2115
|
-
int PMPI_Type_get_name(MPI_Datatype datatype, char *type_name, int *resultlen) MPICH_API_PUBLIC;
|
|
2116
1309
|
int PMPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
2117
|
-
int PMPI_Type_set_name(MPI_Datatype datatype, const char *type_name) MPICH_API_PUBLIC;
|
|
2118
|
-
int PMPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
2119
1310
|
int PMPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
2120
1311
|
int PMPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
2121
1312
|
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
@@ -2123,11 +1314,8 @@ int PMPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
|
2123
1314
|
int PMPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
2124
1315
|
int PMPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
2125
1316
|
int PMPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
2126
|
-
int PMPI_Win_get_name(MPI_Win win, char *win_name, int *resultlen) MPICH_API_PUBLIC;
|
|
2127
1317
|
int PMPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
2128
|
-
int PMPI_Win_set_name(MPI_Win win, const char *win_name) MPICH_API_PUBLIC;
|
|
2129
1318
|
|
|
2130
|
-
int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr) MPICH_API_PUBLIC;
|
|
2131
1319
|
int PMPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
2132
1320
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2133
1321
|
int PMPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -2136,14 +1324,7 @@ int PMPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn
|
|
|
2136
1324
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2137
1325
|
int PMPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2138
1326
|
int PMPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
2139
|
-
int PMPI_Session_call_errhandler(MPI_Session session, int errorcode) MPICH_API_PUBLIC;
|
|
2140
|
-
int PMPI_Session_create_errhandler(MPI_Session_errhandler_function *session_errhandler_fn,
|
|
2141
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2142
|
-
int PMPI_Session_get_errhandler(MPI_Session session, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2143
|
-
int PMPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
2144
1327
|
int PMPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
2145
|
-
int PMPI_Free_mem(void *base) MPICH_API_PUBLIC;
|
|
2146
|
-
int PMPI_Get_address(const void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
2147
1328
|
int PMPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
2148
1329
|
int PMPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
2149
1330
|
int PMPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
@@ -2153,41 +1334,9 @@ int PMPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
|
2153
1334
|
int PMPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
2154
1335
|
int PMPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag) MPICH_API_PUBLIC;
|
|
2155
1336
|
int PMPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
2156
|
-
int PMPI_Pack_external(const char datarep[], const void *inbuf, int incount,
|
|
2157
|
-
MPI_Datatype datatype, void *outbuf, MPI_Aint outsize, MPI_Aint *position)
|
|
2158
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2159
|
-
int PMPI_Pack_external_size(const char datarep[], int incount, MPI_Datatype datatype,
|
|
2160
|
-
MPI_Aint *size) MPICH_API_PUBLIC;
|
|
2161
1337
|
int PMPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
2162
1338
|
int PMPI_Status_c2f(const MPI_Status *c_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
2163
1339
|
int PMPI_Status_f2c(const MPI_Fint *f_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
2164
|
-
int PMPI_Type_create_darray(int size, int rank, int ndims, const int array_of_gsizes[],
|
|
2165
|
-
const int array_of_distribs[], const int array_of_dargs[],
|
|
2166
|
-
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
2167
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2168
|
-
int PMPI_Type_create_hindexed(int count, const int array_of_blocklengths[],
|
|
2169
|
-
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
2170
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2171
|
-
int PMPI_Type_create_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
2172
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2173
|
-
int PMPI_Type_create_indexed_block(int count, int blocklength, const int array_of_displacements[],
|
|
2174
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2175
|
-
int PMPI_Type_create_hindexed_block(int count, int blocklength,
|
|
2176
|
-
const MPI_Aint array_of_displacements[],
|
|
2177
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2178
|
-
int PMPI_Type_create_resized(MPI_Datatype oldtype, MPI_Aint lb, MPI_Aint extent,
|
|
2179
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2180
|
-
int PMPI_Type_create_struct(int count, const int array_of_blocklengths[],
|
|
2181
|
-
const MPI_Aint array_of_displacements[],
|
|
2182
|
-
const MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2183
|
-
int PMPI_Type_create_subarray(int ndims, const int array_of_sizes[],
|
|
2184
|
-
const int array_of_subsizes[], const int array_of_starts[],
|
|
2185
|
-
int order, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2186
|
-
int PMPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
2187
|
-
int PMPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint *true_extent) MPICH_API_PUBLIC;
|
|
2188
|
-
int PMPI_Unpack_external(const char datarep[], const void *inbuf, MPI_Aint insize,
|
|
2189
|
-
MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype)
|
|
2190
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2191
1340
|
int PMPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
2192
1341
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2193
1342
|
int PMPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -2200,17 +1349,6 @@ int PMPI_Type_create_f90_integer(int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
|
2200
1349
|
int PMPI_Type_create_f90_real(int p, int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2201
1350
|
int PMPI_Type_create_f90_complex(int p, int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2202
1351
|
|
|
2203
|
-
int PMPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
2204
|
-
MPI_Op op)
|
|
2205
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2206
|
-
int PMPI_Reduce_local_c(const void *inbuf, void *inoutbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2207
|
-
MPI_Op op)
|
|
2208
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2209
|
-
int PMPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
2210
|
-
int PMPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2211
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2212
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2213
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2214
1352
|
int PMPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
2215
1353
|
const int sourceweights[], int outdegree,
|
|
2216
1354
|
const int destinations[], const int destweights[],
|
|
@@ -2221,88 +1359,682 @@ int PMPI_Dist_graph_create(MPI_Comm comm_old, int n, const int sources[], const
|
|
|
2221
1359
|
int PMPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree, int *weighted) MPICH_API_PUBLIC;
|
|
2222
1360
|
int PMPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
2223
1361
|
int maxoutdegree, int destinations[], int destweights[]) MPICH_API_PUBLIC;
|
|
2224
|
-
|
|
2225
|
-
/* Matched probe functionality */
|
|
2226
|
-
int PMPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message,
|
|
2227
|
-
MPI_Status *status) MPICH_API_PUBLIC;
|
|
2228
|
-
int PMPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
2229
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2230
|
-
int PMPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status) MPICH_API_PUBLIC;
|
|
2231
|
-
int PMPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
2232
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2233
|
-
|
|
2234
|
-
/* Nonblocking collectives */
|
|
2235
|
-
int PMPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2236
|
-
/* Shared memory */
|
|
2237
|
-
int PMPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2238
|
-
/* Noncollective communicator creation */
|
|
2239
|
-
int PMPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2240
|
-
|
|
2241
|
-
/* MPI-3 "large count" routines */
|
|
2242
|
-
int PMPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count) MPICH_API_PUBLIC;
|
|
2243
|
-
int PMPI_Status_set_elements_x(MPI_Status *status, MPI_Datatype datatype, MPI_Count count) MPICH_API_PUBLIC;
|
|
2244
|
-
int PMPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
2245
|
-
int PMPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
2246
|
-
int PMPI_Type_size_x(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2247
|
-
|
|
2248
1362
|
/* MPI_Aint addressing arithmetic */
|
|
2249
1363
|
MPI_Aint PMPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
2250
1364
|
MPI_Aint PMPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
2251
1365
|
|
|
2252
|
-
/* MPI_T interface */
|
|
2253
|
-
/* The MPI_T routines are available only in C bindings - tell tools that they
|
|
2254
|
-
can skip these prototypes */
|
|
1366
|
+
/* MPI_T interface */
|
|
1367
|
+
/* The MPI_T routines are available only in C bindings - tell tools that they
|
|
1368
|
+
can skip these prototypes */
|
|
1369
|
+
int PMPI_T_init_thread(int required, int *provided) MPICH_API_PUBLIC;
|
|
1370
|
+
int PMPI_T_finalize(void) MPICH_API_PUBLIC;
|
|
1371
|
+
int PMPI_T_enum_get_info(MPI_T_enum enumtype, int *num, char *name, int *name_len) MPICH_API_PUBLIC;
|
|
1372
|
+
int PMPI_T_enum_get_item(MPI_T_enum enumtype, int indx, int *value, char *name, int *name_len) MPICH_API_PUBLIC;
|
|
1373
|
+
int PMPI_T_cvar_get_num(int *num_cvar) MPICH_API_PUBLIC;
|
|
1374
|
+
int PMPI_T_cvar_get_info(int cvar_index, char *name, int *name_len, int *verbosity,
|
|
1375
|
+
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
1376
|
+
int *binding, int *scope) MPICH_API_PUBLIC;
|
|
1377
|
+
int PMPI_T_cvar_handle_alloc(int cvar_index, void *obj_handle, MPI_T_cvar_handle *handle,
|
|
1378
|
+
int *count) MPICH_API_PUBLIC;
|
|
1379
|
+
int PMPI_T_cvar_handle_free(MPI_T_cvar_handle *handle) MPICH_API_PUBLIC;
|
|
1380
|
+
int PMPI_T_cvar_read(MPI_T_cvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1381
|
+
int PMPI_T_cvar_write(MPI_T_cvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
1382
|
+
int PMPI_T_pvar_get_num(int *num_pvar) MPICH_API_PUBLIC;
|
|
1383
|
+
int PMPI_T_pvar_get_info(int pvar_index, char *name, int *name_len, int *verbosity, int *var_class,
|
|
1384
|
+
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
1385
|
+
int *binding, int *readonly, int *continuous, int *atomic) MPICH_API_PUBLIC;
|
|
1386
|
+
int PMPI_T_pvar_session_create(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
1387
|
+
int PMPI_T_pvar_session_free(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
1388
|
+
int PMPI_T_pvar_handle_alloc(MPI_T_pvar_session session, int pvar_index, void *obj_handle,
|
|
1389
|
+
MPI_T_pvar_handle *handle, int *count) MPICH_API_PUBLIC;
|
|
1390
|
+
int PMPI_T_pvar_handle_free(MPI_T_pvar_session session, MPI_T_pvar_handle *handle) MPICH_API_PUBLIC;
|
|
1391
|
+
int PMPI_T_pvar_start(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1392
|
+
int PMPI_T_pvar_stop(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1393
|
+
int PMPI_T_pvar_read(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1394
|
+
int PMPI_T_pvar_write(MPI_T_pvar_session session, MPI_T_pvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
1395
|
+
int PMPI_T_pvar_reset(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1396
|
+
int PMPI_T_pvar_readreset(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1397
|
+
int PMPI_T_category_get_num(int *num_cat) MPICH_API_PUBLIC;
|
|
1398
|
+
int PMPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
1399
|
+
int *num_cvars, int *num_pvars, int *num_categories) MPICH_API_PUBLIC;
|
|
1400
|
+
int PMPI_T_category_get_cvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1401
|
+
int PMPI_T_category_get_pvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1402
|
+
int PMPI_T_category_get_categories(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1403
|
+
int PMPI_T_category_changed(int *stamp) MPICH_API_PUBLIC;
|
|
1404
|
+
int PMPI_T_cvar_get_index(const char *name, int *cvar_index) MPICH_API_PUBLIC;
|
|
1405
|
+
int PMPI_T_pvar_get_index(const char *name, int var_class, int *pvar_index) MPICH_API_PUBLIC;
|
|
1406
|
+
int PMPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
1407
|
+
/* End Skip Prototypes */
|
|
1408
|
+
#endif /* MPI_BUILD_PROFILING */
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
#ifndef MPICH_SUPPRESS_PROTOTYPES
|
|
1412
|
+
int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1413
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1414
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1415
|
+
int MPI_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1416
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1417
|
+
MPI_Request *request)
|
|
1418
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1419
|
+
int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1420
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1421
|
+
MPI_Comm comm)
|
|
1422
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1423
|
+
int MPI_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1424
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1425
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1426
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1427
|
+
int MPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1428
|
+
MPI_Comm comm)
|
|
1429
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1430
|
+
int MPI_Allreduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1431
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1432
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1433
|
+
int MPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1434
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1435
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1436
|
+
int MPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1437
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1438
|
+
MPI_Request *request)
|
|
1439
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1440
|
+
int MPI_Alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1441
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int rdispls[],
|
|
1442
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1443
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1444
|
+
int MPI_Alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1445
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1446
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1447
|
+
MPI_Request *request)
|
|
1448
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1449
|
+
int MPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1450
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1451
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1452
|
+
MPICH_API_PUBLIC;
|
|
1453
|
+
int MPI_Alltoallw_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1454
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1455
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1456
|
+
MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1457
|
+
int MPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1458
|
+
int MPI_Barrier_init(MPI_Comm comm, MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1459
|
+
int MPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
1460
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1461
|
+
int MPI_Bcast_init(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1462
|
+
MPI_Info info, MPI_Request *request)
|
|
1463
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1464
|
+
int MPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1465
|
+
MPI_Comm comm)
|
|
1466
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1467
|
+
int MPI_Exscan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1468
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1469
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1470
|
+
int MPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1471
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1472
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1473
|
+
int MPI_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1474
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
1475
|
+
MPI_Request *request)
|
|
1476
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1477
|
+
int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1478
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1479
|
+
MPI_Comm comm)
|
|
1480
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1481
|
+
int MPI_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1482
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1483
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1484
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1485
|
+
int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1486
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1487
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1488
|
+
int MPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1489
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1490
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1491
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1492
|
+
int MPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1493
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1494
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1495
|
+
int MPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1496
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1497
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1498
|
+
int MPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1499
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1500
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1501
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1502
|
+
int MPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1503
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1504
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1505
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1506
|
+
int MPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1507
|
+
int MPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1508
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1509
|
+
int MPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1510
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1511
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1512
|
+
int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1513
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1514
|
+
MPI_Request *request)
|
|
1515
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1516
|
+
int MPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1517
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1518
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1519
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1520
|
+
int MPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1521
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1522
|
+
MPI_Request *request)
|
|
1523
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1524
|
+
int MPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1525
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1526
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1527
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1528
|
+
int MPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1529
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1530
|
+
MPI_Request *request)
|
|
1531
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1532
|
+
int MPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1533
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1534
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1535
|
+
MPI_Request *request)
|
|
1536
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1537
|
+
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1538
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1539
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1540
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1541
|
+
int MPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1542
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
1543
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1544
|
+
int MPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1545
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1546
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1547
|
+
int MPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1548
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
1549
|
+
MPI_Request *request)
|
|
1550
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1551
|
+
int MPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1552
|
+
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_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1555
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1556
|
+
MPI_Request *request)
|
|
1557
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1558
|
+
int MPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1559
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1560
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
1561
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1562
|
+
int MPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1563
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1564
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1565
|
+
int MPI_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1566
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1567
|
+
MPI_Info info, MPI_Request *request)
|
|
1568
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1569
|
+
int MPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1570
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1571
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1572
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1573
|
+
int MPI_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1574
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1575
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
1576
|
+
MPI_Request *request)
|
|
1577
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1578
|
+
int MPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1579
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1580
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1581
|
+
int MPI_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1582
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1583
|
+
MPI_Info info, MPI_Request *request)
|
|
1584
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1585
|
+
int MPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1586
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1587
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
1588
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1589
|
+
int MPI_Neighbor_alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1590
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1591
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1592
|
+
MPI_Info info, MPI_Request *request)
|
|
1593
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1594
|
+
int MPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1595
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1596
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
1597
|
+
MPICH_API_PUBLIC;
|
|
1598
|
+
int MPI_Neighbor_alltoallw_init(const void *sendbuf, const int sendcounts[],
|
|
1599
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
1600
|
+
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
1601
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
1602
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1603
|
+
int MPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1604
|
+
int root, MPI_Comm comm)
|
|
1605
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1606
|
+
int MPI_Reduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1607
|
+
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1608
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1609
|
+
int MPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
1610
|
+
MPI_Op op)
|
|
1611
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1612
|
+
int MPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1613
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1614
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1615
|
+
int MPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1616
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1617
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1618
|
+
int MPI_Reduce_scatter_block_init(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1619
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
1620
|
+
MPI_Request *request)
|
|
1621
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1622
|
+
int MPI_Reduce_scatter_init(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1623
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
1624
|
+
MPI_Request *request)
|
|
1625
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1626
|
+
int MPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1627
|
+
MPI_Comm comm)
|
|
1628
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1629
|
+
int MPI_Scan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1630
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1631
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1632
|
+
int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1633
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1634
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1635
|
+
int MPI_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1636
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
1637
|
+
MPI_Request *request)
|
|
1638
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1639
|
+
int MPI_Scatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1640
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1641
|
+
int root, MPI_Comm comm)
|
|
1642
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1643
|
+
int MPI_Scatterv_init(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1644
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1645
|
+
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1646
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1647
|
+
int MPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
1648
|
+
int MPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1649
|
+
int MPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm)
|
|
1650
|
+
MPICH_API_PUBLIC;
|
|
1651
|
+
int MPI_Comm_dup(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1652
|
+
int MPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1653
|
+
int MPI_Comm_free(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1654
|
+
int MPI_Comm_get_info(MPI_Comm comm, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1655
|
+
int MPI_Comm_get_name(MPI_Comm comm, char *comm_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1656
|
+
int MPI_Comm_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1657
|
+
int MPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1658
|
+
int MPI_Comm_idup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm, MPI_Request *request)
|
|
1659
|
+
MPICH_API_PUBLIC;
|
|
1660
|
+
int MPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
1661
|
+
int MPI_Comm_remote_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1662
|
+
int MPI_Comm_remote_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1663
|
+
int MPI_Comm_set_info(MPI_Comm comm, MPI_Info info) MPICH_API_PUBLIC;
|
|
1664
|
+
int MPI_Comm_set_name(MPI_Comm comm, const char *comm_name) MPICH_API_PUBLIC;
|
|
1665
|
+
int MPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1666
|
+
int MPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1667
|
+
int MPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm)
|
|
1668
|
+
MPICH_API_PUBLIC;
|
|
1669
|
+
int MPI_Comm_test_inter(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1670
|
+
int MPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm,
|
|
1671
|
+
int remote_leader, int tag, MPI_Comm *newintercomm) MPICH_API_PUBLIC;
|
|
1672
|
+
int MPI_Intercomm_create_from_groups(MPI_Group local_group, int local_leader,
|
|
1673
|
+
MPI_Group remote_group, int remote_leader,
|
|
1674
|
+
const char *stringtag, MPI_Info info,
|
|
1675
|
+
MPI_Errhandler errhandler, MPI_Comm *newintercomm)
|
|
1676
|
+
MPICH_API_PUBLIC;
|
|
1677
|
+
int MPI_Intercomm_merge(MPI_Comm intercomm, int high, MPI_Comm *newintracomm) MPICH_API_PUBLIC;
|
|
1678
|
+
int MPIX_Comm_test_threadcomm(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1679
|
+
int MPIX_Comm_revoke(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1680
|
+
int MPIX_Comm_shrink(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1681
|
+
int MPIX_Comm_failure_ack(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1682
|
+
int MPIX_Comm_failure_get_acked(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
1683
|
+
int MPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1684
|
+
int MPIX_Comm_get_failed(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
1685
|
+
int MPI_Get_address(const void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1686
|
+
int MPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1687
|
+
int MPI_Get_elements(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1688
|
+
int MPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
1689
|
+
MPICH_API_PUBLIC;
|
|
1690
|
+
int MPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf, int outsize,
|
|
1691
|
+
int *position, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1692
|
+
int MPI_Pack_external(const char *datarep, const void *inbuf, int incount, MPI_Datatype datatype,
|
|
1693
|
+
void *outbuf, MPI_Aint outsize, MPI_Aint *position) MPICH_API_PUBLIC;
|
|
1694
|
+
int MPI_Pack_external_size(const char *datarep, int incount, MPI_Datatype datatype, MPI_Aint *size)
|
|
1695
|
+
MPICH_API_PUBLIC;
|
|
1696
|
+
int MPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1697
|
+
int MPI_Status_set_elements(MPI_Status *status, MPI_Datatype datatype, int count) MPICH_API_PUBLIC;
|
|
1698
|
+
int MPI_Status_set_elements_x(MPI_Status *status, MPI_Datatype datatype, MPI_Count count)
|
|
1699
|
+
MPICH_API_PUBLIC;
|
|
1700
|
+
int MPI_Type_commit(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1701
|
+
int MPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1702
|
+
int MPI_Type_create_darray(int size, int rank, int ndims, const int array_of_gsizes[],
|
|
1703
|
+
const int array_of_distribs[], const int array_of_dargs[],
|
|
1704
|
+
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
1705
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1706
|
+
int MPI_Type_create_hindexed(int count, const int array_of_blocklengths[],
|
|
1707
|
+
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
1708
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1709
|
+
int MPI_Type_create_hindexed_block(int count, int blocklength,
|
|
1710
|
+
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
1711
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1712
|
+
int MPI_Type_create_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1713
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1714
|
+
int MPI_Type_create_indexed_block(int count, int blocklength, const int array_of_displacements[],
|
|
1715
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1716
|
+
int MPI_Type_create_resized(MPI_Datatype oldtype, MPI_Aint lb, MPI_Aint extent,
|
|
1717
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1718
|
+
int MPI_Type_create_struct(int count, const int array_of_blocklengths[],
|
|
1719
|
+
const MPI_Aint array_of_displacements[],
|
|
1720
|
+
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
1721
|
+
MPICH_API_PUBLIC;
|
|
1722
|
+
int MPI_Type_create_subarray(int ndims, const int array_of_sizes[], const int array_of_subsizes[],
|
|
1723
|
+
const int array_of_starts[], int order, MPI_Datatype oldtype,
|
|
1724
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1725
|
+
int MPI_Type_dup(MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1726
|
+
int MPI_Type_free(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1727
|
+
int MPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
|
|
1728
|
+
int max_datatypes, int array_of_integers[], MPI_Aint array_of_addresses[],
|
|
1729
|
+
MPI_Datatype array_of_datatypes[]) MPICH_API_PUBLIC;
|
|
1730
|
+
int MPI_Type_get_envelope(MPI_Datatype datatype, int *num_integers, int *num_addresses,
|
|
1731
|
+
int *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
1732
|
+
int MPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1733
|
+
int MPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
1734
|
+
MPICH_API_PUBLIC;
|
|
1735
|
+
int MPI_Type_get_name(MPI_Datatype datatype, char *type_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1736
|
+
int MPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint *true_extent)
|
|
1737
|
+
MPICH_API_PUBLIC;
|
|
1738
|
+
int MPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
1739
|
+
MPICH_API_PUBLIC;
|
|
1740
|
+
int MPI_Type_indexed(int count, const int array_of_blocklengths[],
|
|
1741
|
+
const int array_of_displacements[], MPI_Datatype oldtype,
|
|
1742
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1743
|
+
int MPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1744
|
+
int MPI_Type_set_name(MPI_Datatype datatype, const char *type_name) MPICH_API_PUBLIC;
|
|
1745
|
+
int MPI_Type_size(MPI_Datatype datatype, int *size) MPICH_API_PUBLIC;
|
|
1746
|
+
int MPI_Type_size_x(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
1747
|
+
int MPI_Type_vector(int count, int blocklength, int stride, MPI_Datatype oldtype,
|
|
1748
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1749
|
+
int MPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1750
|
+
MPI_Datatype datatype, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1751
|
+
int MPI_Unpack_external(const char datarep[], const void *inbuf, MPI_Aint insize,
|
|
1752
|
+
MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype)
|
|
1753
|
+
MPICH_API_PUBLIC;
|
|
1754
|
+
int MPI_Address(void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1755
|
+
int MPI_Type_extent(MPI_Datatype datatype, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1756
|
+
int MPI_Type_lb(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1757
|
+
int MPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1758
|
+
int MPI_Type_hindexed(int count, int array_of_blocklengths[], MPI_Aint array_of_displacements[],
|
|
1759
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1760
|
+
int MPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1761
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1762
|
+
int MPI_Type_struct(int count, int array_of_blocklengths[], MPI_Aint array_of_displacements[],
|
|
1763
|
+
MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1764
|
+
int MPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
1765
|
+
int MPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
1766
|
+
int MPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
1767
|
+
int MPIX_Win_create_notify(MPI_Win win, int notification_num) MPICH_API_PUBLIC;
|
|
1768
|
+
int MPIX_Win_free_notify(MPI_Win win) MPICH_API_PUBLIC;
|
|
1769
|
+
int MPIX_Win_get_notify(MPI_Win win, int notification_idx, MPI_Count *notification)
|
|
1770
|
+
MPICH_API_PUBLIC;
|
|
1771
|
+
int MPIX_Win_set_notify(MPI_Win win, int notification_idx, MPI_Count notification)
|
|
1772
|
+
MPICH_API_PUBLIC;
|
|
1773
|
+
int MPIX_Win_get_notify_request(MPI_Win win, int notification_idx, MPI_Count expected_value,
|
|
1774
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1775
|
+
int MPIX_Get_notify(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1776
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1777
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
1778
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1779
|
+
int MPIX_Put_notify(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1780
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1781
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
1782
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1783
|
+
int MPI_Status_c2f08(const MPI_Status *c_status, MPI_F08_status *f08_status) MPICH_API_PUBLIC;
|
|
1784
|
+
int MPI_Status_f082c(const MPI_F08_status *f08_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
1785
|
+
int MPI_Status_f082f(const MPI_F08_status *f08_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
1786
|
+
int MPI_Status_f2f08(const MPI_Fint *f_status, MPI_F08_status *f08_status) MPICH_API_PUBLIC;
|
|
1787
|
+
int MPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
1788
|
+
int MPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1789
|
+
int MPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup)
|
|
1790
|
+
MPICH_API_PUBLIC;
|
|
1791
|
+
int MPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1792
|
+
int MPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup)
|
|
1793
|
+
MPICH_API_PUBLIC;
|
|
1794
|
+
int MPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup)
|
|
1795
|
+
MPICH_API_PUBLIC;
|
|
1796
|
+
int MPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup)
|
|
1797
|
+
MPICH_API_PUBLIC;
|
|
1798
|
+
int MPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup)
|
|
1799
|
+
MPICH_API_PUBLIC;
|
|
1800
|
+
int MPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1801
|
+
int MPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1802
|
+
int MPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1803
|
+
int ranks2[]) MPICH_API_PUBLIC;
|
|
1804
|
+
int MPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1805
|
+
int MPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
1806
|
+
int MPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1807
|
+
int MPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1808
|
+
int MPI_Parrived(MPI_Request request, int partition, int *flag) MPICH_API_PUBLIC;
|
|
1809
|
+
int MPI_Pready(int partition, MPI_Request request) MPICH_API_PUBLIC;
|
|
1810
|
+
int MPI_Pready_list(int length, const int array_of_partitions[], MPI_Request request)
|
|
1811
|
+
MPICH_API_PUBLIC;
|
|
1812
|
+
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request request) MPICH_API_PUBLIC;
|
|
1813
|
+
int MPI_Precv_init(void *buf, int partitions, MPI_Count count, MPI_Datatype datatype, int dest,
|
|
1814
|
+
int tag, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1815
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_API_PUBLIC;
|
|
1816
|
+
int MPI_Psend_init(const void *buf, int partitions, MPI_Count count, MPI_Datatype datatype,
|
|
1817
|
+
int dest, int tag, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
1818
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_API_PUBLIC;
|
|
1819
|
+
int MPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
1820
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1821
|
+
int MPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1822
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1823
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1824
|
+
int MPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
1825
|
+
int MPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1826
|
+
int MPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1827
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1828
|
+
int MPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message,
|
|
1829
|
+
MPI_Status *status) MPICH_API_PUBLIC;
|
|
1830
|
+
int MPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
1831
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1832
|
+
int MPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1833
|
+
int MPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm,
|
|
1834
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1835
|
+
int MPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1836
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1837
|
+
int MPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1838
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1839
|
+
int MPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1840
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1841
|
+
int MPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status)
|
|
1842
|
+
MPICH_API_PUBLIC;
|
|
1843
|
+
int MPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
1844
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1845
|
+
int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1846
|
+
int MPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm,
|
|
1847
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1848
|
+
int MPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm,
|
|
1849
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1850
|
+
int MPI_Rsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
1851
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1852
|
+
int MPI_Rsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1853
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1854
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1855
|
+
int MPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
1856
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1857
|
+
int MPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1858
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1859
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1860
|
+
int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag,
|
|
1861
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag,
|
|
1862
|
+
MPI_Comm comm, MPI_Status *status)
|
|
1863
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
1864
|
+
int MPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest, int sendtag,
|
|
1865
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
1866
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1867
|
+
int MPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
1868
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1869
|
+
int MPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1870
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1871
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1872
|
+
int MPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1873
|
+
int MPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
1874
|
+
int MPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
1875
|
+
MPI_Grequest_cancel_function *cancel_fn, void *extra_state,
|
|
1876
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1877
|
+
int MPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1878
|
+
int MPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1879
|
+
int MPI_Request_get_status_all(int count, MPI_Request array_of_requests[], int *flag,
|
|
1880
|
+
MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
1881
|
+
int MPI_Request_get_status_any(int count, MPI_Request array_of_requests[], int *indx, int *flag,
|
|
1882
|
+
MPI_Status *status) MPICH_API_PUBLIC;
|
|
1883
|
+
int MPI_Request_get_status_some(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1884
|
+
int array_of_indices[], MPI_Status *array_of_statuses)
|
|
1885
|
+
MPICH_API_PUBLIC;
|
|
1886
|
+
int MPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1887
|
+
int MPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1888
|
+
int MPI_Status_get_error(MPI_Status *status, int *error) MPICH_API_PUBLIC;
|
|
1889
|
+
int MPI_Status_get_source(MPI_Status *status, int *source) MPICH_API_PUBLIC;
|
|
1890
|
+
int MPI_Status_get_tag(MPI_Status *status, int *tag) MPICH_API_PUBLIC;
|
|
1891
|
+
int MPI_Status_set_error(MPI_Status *status, int error) MPICH_API_PUBLIC;
|
|
1892
|
+
int MPI_Status_set_source(MPI_Status *status, int source) MPICH_API_PUBLIC;
|
|
1893
|
+
int MPI_Status_set_tag(MPI_Status *status, int tag) MPICH_API_PUBLIC;
|
|
1894
|
+
int MPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
1895
|
+
int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1896
|
+
int MPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1897
|
+
int MPI_Testall(int count, MPI_Request array_of_requests[], int *flag,
|
|
1898
|
+
MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
1899
|
+
int MPI_Testany(int count, MPI_Request array_of_requests[], int *indx, int *flag,
|
|
1900
|
+
MPI_Status *status) MPICH_API_PUBLIC;
|
|
1901
|
+
int MPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1902
|
+
int array_of_indices[], MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
1903
|
+
int MPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1904
|
+
int MPI_Waitall(int count, MPI_Request array_of_requests[], MPI_Status *array_of_statuses)
|
|
1905
|
+
MPICH_API_PUBLIC;
|
|
1906
|
+
int MPI_Waitany(int count, MPI_Request array_of_requests[], int *indx, MPI_Status *status)
|
|
1907
|
+
MPICH_API_PUBLIC;
|
|
1908
|
+
int MPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1909
|
+
int array_of_indices[], MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
1910
|
+
int MPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1911
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1912
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1913
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1914
|
+
int MPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr) MPICH_API_PUBLIC;
|
|
1915
|
+
int MPI_Compare_and_swap(const void *origin_addr, const void *compare_addr, void *result_addr,
|
|
1916
|
+
MPI_Datatype datatype, int target_rank, MPI_Aint target_disp, MPI_Win win)
|
|
1917
|
+
MPICH_API_PUBLIC;
|
|
1918
|
+
int MPI_Fetch_and_op(const void *origin_addr, void *result_addr, MPI_Datatype datatype,
|
|
1919
|
+
int target_rank, MPI_Aint target_disp, MPI_Op op, MPI_Win win)
|
|
1920
|
+
MPICH_API_PUBLIC;
|
|
1921
|
+
int MPI_Free_mem(void *base) MPICH_API_PUBLIC;
|
|
1922
|
+
int MPI_Get(void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
|
|
1923
|
+
MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win)
|
|
1924
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1925
|
+
int MPI_Get_accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1926
|
+
void *result_addr, int result_count, MPI_Datatype result_datatype,
|
|
1927
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1928
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1929
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1930
|
+
int MPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1931
|
+
int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype,
|
|
1932
|
+
MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1933
|
+
int MPI_Raccumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1934
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1935
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win, MPI_Request *request)
|
|
1936
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1937
|
+
int MPI_Rget(void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
|
|
1938
|
+
MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1939
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1940
|
+
int MPI_Rget_accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1941
|
+
void *result_addr, int result_count, MPI_Datatype result_datatype,
|
|
1942
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1943
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win, MPI_Request *request)
|
|
1944
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1945
|
+
int MPI_Rput(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1946
|
+
int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype,
|
|
1947
|
+
MPI_Win win, MPI_Request *request)
|
|
1948
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1949
|
+
int MPI_Win_allocate(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, void *baseptr,
|
|
1950
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1951
|
+
int MPI_Win_allocate_shared(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1952
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1953
|
+
int MPI_Win_attach(MPI_Win win, void *base, MPI_Aint size) MPICH_API_PUBLIC;
|
|
1954
|
+
int MPI_Win_complete(MPI_Win win) MPICH_API_PUBLIC;
|
|
1955
|
+
int MPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1956
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1957
|
+
int MPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1958
|
+
int MPI_Win_detach(MPI_Win win, const void *base) MPICH_API_PUBLIC;
|
|
1959
|
+
int MPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1960
|
+
int MPI_Win_flush(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1961
|
+
int MPI_Win_flush_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1962
|
+
int MPI_Win_flush_local(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1963
|
+
int MPI_Win_flush_local_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1964
|
+
int MPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
1965
|
+
int MPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1966
|
+
int MPI_Win_get_info(MPI_Win win, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1967
|
+
int MPI_Win_get_name(MPI_Win win, char *win_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1968
|
+
int MPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1969
|
+
int MPI_Win_lock_all(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1970
|
+
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1971
|
+
int MPI_Win_set_info(MPI_Win win, MPI_Info info) MPICH_API_PUBLIC;
|
|
1972
|
+
int MPI_Win_set_name(MPI_Win win, const char *win_name) MPICH_API_PUBLIC;
|
|
1973
|
+
int MPI_Win_shared_query(MPI_Win win, int rank, MPI_Aint *size, int *disp_unit, void *baseptr)
|
|
1974
|
+
MPICH_API_PUBLIC;
|
|
1975
|
+
int MPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1976
|
+
int MPI_Win_sync(MPI_Win win) MPICH_API_PUBLIC;
|
|
1977
|
+
int MPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
1978
|
+
int MPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1979
|
+
int MPI_Win_unlock_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1980
|
+
int MPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
1981
|
+
int MPI_Comm_create_from_group(MPI_Group group, const char *stringtag, MPI_Info info,
|
|
1982
|
+
MPI_Errhandler errhandler, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1983
|
+
int MPI_Group_from_session_pset(MPI_Session session, const char *pset_name, MPI_Group *newgroup)
|
|
1984
|
+
MPICH_API_PUBLIC;
|
|
1985
|
+
int MPI_Session_call_errhandler(MPI_Session session, int errorcode) MPICH_API_PUBLIC;
|
|
1986
|
+
int MPI_Session_create_errhandler(MPI_Session_errhandler_function *session_errhandler_fn,
|
|
1987
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1988
|
+
int MPI_Session_finalize(MPI_Session *session) MPICH_API_PUBLIC;
|
|
1989
|
+
int MPI_Session_get_errhandler(MPI_Session session, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1990
|
+
int MPI_Session_get_info(MPI_Session session, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1991
|
+
int MPI_Session_get_nth_pset(MPI_Session session, MPI_Info info, int n, int *pset_len,
|
|
1992
|
+
char *pset_name) MPICH_API_PUBLIC;
|
|
1993
|
+
int MPI_Session_get_num_psets(MPI_Session session, MPI_Info info, int *npset_names)
|
|
1994
|
+
MPICH_API_PUBLIC;
|
|
1995
|
+
int MPI_Session_get_pset_info(MPI_Session session, const char *pset_name, MPI_Info *info)
|
|
1996
|
+
MPICH_API_PUBLIC;
|
|
1997
|
+
int MPI_Session_init(MPI_Info info, MPI_Errhandler errhandler, MPI_Session *session)
|
|
1998
|
+
MPICH_API_PUBLIC;
|
|
1999
|
+
int MPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
2000
|
+
int MPI_Close_port(const char *port_name) MPICH_API_PUBLIC;
|
|
2001
|
+
int MPI_Comm_accept(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
2002
|
+
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2003
|
+
int MPI_Comm_connect(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
2004
|
+
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2005
|
+
int MPI_Comm_disconnect(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
2006
|
+
int MPI_Comm_get_parent(MPI_Comm *parent) MPICH_API_PUBLIC;
|
|
2007
|
+
int MPI_Comm_join(int fd, MPI_Comm *intercomm) MPICH_API_PUBLIC;
|
|
2008
|
+
int MPI_Comm_spawn(const char *command, char *argv[], int maxprocs, MPI_Info info, int root,
|
|
2009
|
+
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
2010
|
+
int MPI_Comm_spawn_multiple(int count, char *array_of_commands[], char **array_of_argv[],
|
|
2011
|
+
const int array_of_maxprocs[], const MPI_Info array_of_info[], int root,
|
|
2012
|
+
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[])
|
|
2013
|
+
MPICH_API_PUBLIC;
|
|
2014
|
+
int MPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
2015
|
+
int MPI_Open_port(MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
2016
|
+
int MPI_Publish_name(const char *service_name, MPI_Info info, const char *port_name)
|
|
2017
|
+
MPICH_API_PUBLIC;
|
|
2018
|
+
int MPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port_name)
|
|
2019
|
+
MPICH_API_PUBLIC;
|
|
2020
|
+
double MPI_Wtick(void) MPICH_API_PUBLIC;
|
|
2021
|
+
double MPI_Wtime(void) MPICH_API_PUBLIC;
|
|
2022
|
+
|
|
2255
2023
|
/* Begin Skip Prototypes */
|
|
2256
|
-
int
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
int
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
int
|
|
2267
|
-
|
|
2268
|
-
int PMPI_T_cvar_write(MPI_T_cvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
2269
|
-
int PMPI_T_pvar_get_num(int *num_pvar) MPICH_API_PUBLIC;
|
|
2270
|
-
int PMPI_T_pvar_get_info(int pvar_index, char *name, int *name_len, int *verbosity, int *var_class,
|
|
2271
|
-
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
2272
|
-
int *binding, int *readonly, int *continuous, int *atomic) MPICH_API_PUBLIC;
|
|
2273
|
-
int PMPI_T_pvar_session_create(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
2274
|
-
int PMPI_T_pvar_session_free(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
2275
|
-
int PMPI_T_pvar_handle_alloc(MPI_T_pvar_session session, int pvar_index, void *obj_handle,
|
|
2276
|
-
MPI_T_pvar_handle *handle, int *count) MPICH_API_PUBLIC;
|
|
2277
|
-
int PMPI_T_pvar_handle_free(MPI_T_pvar_session session, MPI_T_pvar_handle *handle) MPICH_API_PUBLIC;
|
|
2278
|
-
int PMPI_T_pvar_start(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
2279
|
-
int PMPI_T_pvar_stop(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
2280
|
-
int PMPI_T_pvar_read(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
2281
|
-
int PMPI_T_pvar_write(MPI_T_pvar_session session, MPI_T_pvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
2282
|
-
int PMPI_T_pvar_reset(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
2283
|
-
int PMPI_T_pvar_readreset(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
2284
|
-
int PMPI_T_category_get_num(int *num_cat) MPICH_API_PUBLIC;
|
|
2285
|
-
int PMPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
2286
|
-
int *num_cvars, int *num_pvars, int *num_categories) MPICH_API_PUBLIC;
|
|
2287
|
-
int PMPI_T_category_get_cvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
2288
|
-
int PMPI_T_category_get_pvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
2289
|
-
int PMPI_T_category_get_categories(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
2290
|
-
int PMPI_T_category_changed(int *stamp) MPICH_API_PUBLIC;
|
|
2291
|
-
int PMPI_T_cvar_get_index(const char *name, int *cvar_index) MPICH_API_PUBLIC;
|
|
2292
|
-
int PMPI_T_pvar_get_index(const char *name, int var_class, int *pvar_index) MPICH_API_PUBLIC;
|
|
2293
|
-
int PMPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
2024
|
+
int MPIX_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
2025
|
+
MPI_Grequest_cancel_function *cancel_fn,
|
|
2026
|
+
MPIX_Grequest_poll_function *poll_fn, MPIX_Grequest_wait_function *wait_fn,
|
|
2027
|
+
void *extra_state, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2028
|
+
int MPIX_Grequest_class_create(MPI_Grequest_query_function *query_fn,
|
|
2029
|
+
MPI_Grequest_free_function *free_fn,
|
|
2030
|
+
MPI_Grequest_cancel_function *cancel_fn,
|
|
2031
|
+
MPIX_Grequest_poll_function *poll_fn,
|
|
2032
|
+
MPIX_Grequest_wait_function *wait_fn,
|
|
2033
|
+
MPIX_Grequest_class *greq_class) MPICH_API_PUBLIC;
|
|
2034
|
+
int MPIX_Grequest_class_allocate(MPIX_Grequest_class greq_class, void *extra_state,
|
|
2035
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2294
2036
|
/* End Skip Prototypes */
|
|
2295
2037
|
|
|
2296
|
-
|
|
2297
|
-
/* Non-standard but public extensions to MPI */
|
|
2298
|
-
/* Fault Tolerance Extensions */
|
|
2299
|
-
int PMPIX_Comm_failure_ack(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2300
|
-
int PMPIX_Comm_failure_get_acked(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
2301
|
-
int PMPIX_Comm_revoke(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2302
|
-
int PMPIX_Comm_shrink(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2303
|
-
int PMPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
2304
|
-
|
|
2305
|
-
/* MPI-4.0 Large count collective operations */
|
|
2306
2038
|
int MPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2307
2039
|
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2308
2040
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
@@ -2509,6 +2241,9 @@ int MPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Dataty
|
|
|
2509
2241
|
int MPI_Reduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2510
2242
|
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2511
2243
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2244
|
+
int MPI_Reduce_local_c(const void *inbuf, void *inoutbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2245
|
+
MPI_Op op)
|
|
2246
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2512
2247
|
int MPI_Reduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2513
2248
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2514
2249
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
@@ -2610,6 +2345,15 @@ int MPI_Unpack_c(const void *inbuf, MPI_Count insize, MPI_Count *position, void
|
|
|
2610
2345
|
int MPI_Unpack_external_c(const char datarep[], const void *inbuf, MPI_Count insize,
|
|
2611
2346
|
MPI_Count *position, void *outbuf, MPI_Count outcount,
|
|
2612
2347
|
MPI_Datatype datatype) MPICH_API_PUBLIC;
|
|
2348
|
+
int MPIX_Get_notify_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2349
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2350
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
2351
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2352
|
+
int MPIX_Put_notify_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2353
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2354
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
2355
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2356
|
+
int MPI_Op_create_c(MPI_User_function_c *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
2613
2357
|
int MPI_Bsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2614
2358
|
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2615
2359
|
int MPI_Bsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -2700,6 +2444,18 @@ int MPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype ori
|
|
|
2700
2444
|
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2701
2445
|
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
2702
2446
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2447
|
+
int MPI_Win_allocate_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
2448
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
2449
|
+
int MPI_Win_allocate_shared_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
2450
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
2451
|
+
int MPI_Win_create_c(void *base, MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
2452
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
2453
|
+
int MPI_Win_shared_query_c(MPI_Win win, int rank, MPI_Aint *size, MPI_Aint *disp_unit,
|
|
2454
|
+
void *baseptr) MPICH_API_PUBLIC;
|
|
2455
|
+
|
|
2456
|
+
#endif /* MPICH_SUPPRESS_PROTOTYPES */
|
|
2457
|
+
#if !defined(MPI_BUILD_PROFILING)
|
|
2458
|
+
/* Begin Skip Prototypes */
|
|
2703
2459
|
int PMPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2704
2460
|
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2705
2461
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
@@ -3110,6 +2866,9 @@ int PMPI_Reduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_
|
|
|
3110
2866
|
int PMPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
3111
2867
|
MPI_Op op)
|
|
3112
2868
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2869
|
+
int PMPI_Reduce_local_c(const void *inbuf, void *inoutbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2870
|
+
MPI_Op op)
|
|
2871
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
3113
2872
|
int PMPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
3114
2873
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
3115
2874
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
@@ -3181,7 +2940,257 @@ int PMPI_Scatterv_init_c(const void *sendbuf, const MPI_Count sendcounts[], cons
|
|
|
3181
2940
|
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
3182
2941
|
MPI_Request *request)
|
|
3183
2942
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
3184
|
-
|
|
2943
|
+
int PMPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
2944
|
+
int PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2945
|
+
int PMPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm)
|
|
2946
|
+
MPICH_API_PUBLIC;
|
|
2947
|
+
int PMPI_Comm_dup(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2948
|
+
int PMPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2949
|
+
int PMPI_Comm_free(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
2950
|
+
int PMPI_Comm_get_info(MPI_Comm comm, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
2951
|
+
int PMPI_Comm_get_name(MPI_Comm comm, char *comm_name, int *resultlen) MPICH_API_PUBLIC;
|
|
2952
|
+
int PMPI_Comm_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
2953
|
+
int PMPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2954
|
+
int PMPI_Comm_idup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm, MPI_Request *request)
|
|
2955
|
+
MPICH_API_PUBLIC;
|
|
2956
|
+
int PMPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
2957
|
+
int PMPI_Comm_remote_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
2958
|
+
int PMPI_Comm_remote_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
2959
|
+
int PMPI_Comm_set_info(MPI_Comm comm, MPI_Info info) MPICH_API_PUBLIC;
|
|
2960
|
+
int PMPI_Comm_set_name(MPI_Comm comm, const char *comm_name) MPICH_API_PUBLIC;
|
|
2961
|
+
int PMPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
2962
|
+
int PMPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2963
|
+
int PMPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm)
|
|
2964
|
+
MPICH_API_PUBLIC;
|
|
2965
|
+
int PMPI_Comm_test_inter(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
2966
|
+
int PMPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm,
|
|
2967
|
+
int remote_leader, int tag, MPI_Comm *newintercomm) MPICH_API_PUBLIC;
|
|
2968
|
+
int PMPI_Intercomm_create_from_groups(MPI_Group local_group, int local_leader,
|
|
2969
|
+
MPI_Group remote_group, int remote_leader,
|
|
2970
|
+
const char *stringtag, MPI_Info info,
|
|
2971
|
+
MPI_Errhandler errhandler, MPI_Comm *newintercomm)
|
|
2972
|
+
MPICH_API_PUBLIC;
|
|
2973
|
+
int PMPI_Intercomm_merge(MPI_Comm intercomm, int high, MPI_Comm *newintracomm) MPICH_API_PUBLIC;
|
|
2974
|
+
int PMPIX_Comm_test_threadcomm(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
2975
|
+
int PMPIX_Comm_revoke(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2976
|
+
int PMPIX_Comm_shrink(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2977
|
+
int PMPIX_Comm_failure_ack(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2978
|
+
int PMPIX_Comm_failure_get_acked(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
2979
|
+
int PMPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
2980
|
+
int PMPIX_Comm_get_failed(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
2981
|
+
int PMPI_Get_address(const void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
2982
|
+
int PMPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
2983
|
+
int PMPI_Get_count_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2984
|
+
MPICH_API_PUBLIC;
|
|
2985
|
+
int PMPI_Get_elements(const MPI_Status *status, MPI_Datatype datatype, int *count)
|
|
2986
|
+
MPICH_API_PUBLIC;
|
|
2987
|
+
int PMPI_Get_elements_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2988
|
+
MPICH_API_PUBLIC;
|
|
2989
|
+
int PMPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2990
|
+
MPICH_API_PUBLIC;
|
|
2991
|
+
int PMPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf, int outsize,
|
|
2992
|
+
int *position, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2993
|
+
int PMPI_Pack_c(const void *inbuf, MPI_Count incount, MPI_Datatype datatype, void *outbuf,
|
|
2994
|
+
MPI_Count outsize, MPI_Count *position, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2995
|
+
int PMPI_Pack_external(const char *datarep, const void *inbuf, int incount, MPI_Datatype datatype,
|
|
2996
|
+
void *outbuf, MPI_Aint outsize, MPI_Aint *position) MPICH_API_PUBLIC;
|
|
2997
|
+
int PMPI_Pack_external_c(const char *datarep, const void *inbuf, MPI_Count incount,
|
|
2998
|
+
MPI_Datatype datatype, void *outbuf, MPI_Count outsize,
|
|
2999
|
+
MPI_Count *position) MPICH_API_PUBLIC;
|
|
3000
|
+
int PMPI_Pack_external_size(const char *datarep, int incount, MPI_Datatype datatype,
|
|
3001
|
+
MPI_Aint *size) MPICH_API_PUBLIC;
|
|
3002
|
+
int PMPI_Pack_external_size_c(const char *datarep, MPI_Count incount, MPI_Datatype datatype,
|
|
3003
|
+
MPI_Count *size) MPICH_API_PUBLIC;
|
|
3004
|
+
int PMPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
3005
|
+
int PMPI_Pack_size_c(MPI_Count incount, MPI_Datatype datatype, MPI_Comm comm, MPI_Count *size)
|
|
3006
|
+
MPICH_API_PUBLIC;
|
|
3007
|
+
int PMPI_Status_set_elements(MPI_Status *status, MPI_Datatype datatype, int count)
|
|
3008
|
+
MPICH_API_PUBLIC;
|
|
3009
|
+
int PMPI_Status_set_elements_c(MPI_Status *status, MPI_Datatype datatype, MPI_Count count)
|
|
3010
|
+
MPICH_API_PUBLIC;
|
|
3011
|
+
int PMPI_Status_set_elements_x(MPI_Status *status, MPI_Datatype datatype, MPI_Count count)
|
|
3012
|
+
MPICH_API_PUBLIC;
|
|
3013
|
+
int PMPI_Type_commit(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
3014
|
+
int PMPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3015
|
+
int PMPI_Type_contiguous_c(MPI_Count count, MPI_Datatype oldtype, MPI_Datatype *newtype)
|
|
3016
|
+
MPICH_API_PUBLIC;
|
|
3017
|
+
int PMPI_Type_create_darray(int size, int rank, int ndims, const int array_of_gsizes[],
|
|
3018
|
+
const int array_of_distribs[], const int array_of_dargs[],
|
|
3019
|
+
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
3020
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3021
|
+
int PMPI_Type_create_darray_c(int size, int rank, int ndims, const MPI_Count array_of_gsizes[],
|
|
3022
|
+
const int array_of_distribs[], const int array_of_dargs[],
|
|
3023
|
+
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
3024
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3025
|
+
int PMPI_Type_create_hindexed(int count, const int array_of_blocklengths[],
|
|
3026
|
+
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
3027
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3028
|
+
int PMPI_Type_create_hindexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3029
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3030
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3031
|
+
int PMPI_Type_create_hindexed_block(int count, int blocklength,
|
|
3032
|
+
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
3033
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3034
|
+
int PMPI_Type_create_hindexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
3035
|
+
const MPI_Count array_of_displacements[],
|
|
3036
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype)
|
|
3037
|
+
MPICH_API_PUBLIC;
|
|
3038
|
+
int PMPI_Type_create_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
3039
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3040
|
+
int PMPI_Type_create_hvector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
3041
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3042
|
+
int PMPI_Type_create_indexed_block(int count, int blocklength, const int array_of_displacements[],
|
|
3043
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3044
|
+
int PMPI_Type_create_indexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
3045
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3046
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3047
|
+
int PMPI_Type_create_resized(MPI_Datatype oldtype, MPI_Aint lb, MPI_Aint extent,
|
|
3048
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3049
|
+
int PMPI_Type_create_resized_c(MPI_Datatype oldtype, MPI_Count lb, MPI_Count extent,
|
|
3050
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3051
|
+
int PMPI_Type_create_struct(int count, const int array_of_blocklengths[],
|
|
3052
|
+
const MPI_Aint array_of_displacements[],
|
|
3053
|
+
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
3054
|
+
MPICH_API_PUBLIC;
|
|
3055
|
+
int PMPI_Type_create_struct_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3056
|
+
const MPI_Count array_of_displacements[],
|
|
3057
|
+
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
3058
|
+
MPICH_API_PUBLIC;
|
|
3059
|
+
int PMPI_Type_create_subarray(int ndims, const int array_of_sizes[], const int array_of_subsizes[],
|
|
3060
|
+
const int array_of_starts[], int order, MPI_Datatype oldtype,
|
|
3061
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3062
|
+
int PMPI_Type_create_subarray_c(int ndims, const MPI_Count array_of_sizes[],
|
|
3063
|
+
const MPI_Count array_of_subsizes[],
|
|
3064
|
+
const MPI_Count array_of_starts[], int order, MPI_Datatype oldtype,
|
|
3065
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3066
|
+
int PMPI_Type_dup(MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3067
|
+
int PMPI_Type_free(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
3068
|
+
int PMPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
|
|
3069
|
+
int max_datatypes, int array_of_integers[],
|
|
3070
|
+
MPI_Aint array_of_addresses[], MPI_Datatype array_of_datatypes[])
|
|
3071
|
+
MPICH_API_PUBLIC;
|
|
3072
|
+
int PMPI_Type_get_contents_c(MPI_Datatype datatype, MPI_Count max_integers, MPI_Count max_addresses,
|
|
3073
|
+
MPI_Count max_large_counts, MPI_Count max_datatypes,
|
|
3074
|
+
int array_of_integers[], MPI_Aint array_of_addresses[],
|
|
3075
|
+
MPI_Count array_of_large_counts[], MPI_Datatype array_of_datatypes[])
|
|
3076
|
+
MPICH_API_PUBLIC;
|
|
3077
|
+
int PMPI_Type_get_envelope(MPI_Datatype datatype, int *num_integers, int *num_addresses,
|
|
3078
|
+
int *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
3079
|
+
int PMPI_Type_get_envelope_c(MPI_Datatype datatype, MPI_Count *num_integers,
|
|
3080
|
+
MPI_Count *num_addresses, MPI_Count *num_large_counts,
|
|
3081
|
+
MPI_Count *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
3082
|
+
int PMPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
3083
|
+
int PMPI_Type_get_extent_c(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
3084
|
+
MPICH_API_PUBLIC;
|
|
3085
|
+
int PMPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
3086
|
+
MPICH_API_PUBLIC;
|
|
3087
|
+
int PMPI_Type_get_name(MPI_Datatype datatype, char *type_name, int *resultlen) MPICH_API_PUBLIC;
|
|
3088
|
+
int PMPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint *true_extent)
|
|
3089
|
+
MPICH_API_PUBLIC;
|
|
3090
|
+
int PMPI_Type_get_true_extent_c(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
3091
|
+
MPICH_API_PUBLIC;
|
|
3092
|
+
int PMPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
3093
|
+
MPICH_API_PUBLIC;
|
|
3094
|
+
int PMPI_Type_indexed(int count, const int array_of_blocklengths[],
|
|
3095
|
+
const int array_of_displacements[], MPI_Datatype oldtype,
|
|
3096
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3097
|
+
int PMPI_Type_indexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3098
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3099
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3100
|
+
int PMPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
3101
|
+
int PMPI_Type_set_name(MPI_Datatype datatype, const char *type_name) MPICH_API_PUBLIC;
|
|
3102
|
+
int PMPI_Type_size(MPI_Datatype datatype, int *size) MPICH_API_PUBLIC;
|
|
3103
|
+
int PMPI_Type_size_c(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
3104
|
+
int PMPI_Type_size_x(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
3105
|
+
int PMPI_Type_vector(int count, int blocklength, int stride, MPI_Datatype oldtype,
|
|
3106
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3107
|
+
int PMPI_Type_vector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
3108
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3109
|
+
int PMPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
3110
|
+
MPI_Datatype datatype, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3111
|
+
int PMPI_Unpack_c(const void *inbuf, MPI_Count insize, MPI_Count *position, void *outbuf,
|
|
3112
|
+
MPI_Count outcount, MPI_Datatype datatype, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3113
|
+
int PMPI_Unpack_external(const char datarep[], const void *inbuf, MPI_Aint insize,
|
|
3114
|
+
MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype)
|
|
3115
|
+
MPICH_API_PUBLIC;
|
|
3116
|
+
int PMPI_Unpack_external_c(const char datarep[], const void *inbuf, MPI_Count insize,
|
|
3117
|
+
MPI_Count *position, void *outbuf, MPI_Count outcount,
|
|
3118
|
+
MPI_Datatype datatype) MPICH_API_PUBLIC;
|
|
3119
|
+
int PMPI_Address(void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
3120
|
+
int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
3121
|
+
int PMPI_Type_lb(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
3122
|
+
int PMPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
3123
|
+
int PMPI_Type_hindexed(int count, int array_of_blocklengths[], MPI_Aint array_of_displacements[],
|
|
3124
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3125
|
+
int PMPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
3126
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3127
|
+
int PMPI_Type_struct(int count, int array_of_blocklengths[], MPI_Aint array_of_displacements[],
|
|
3128
|
+
MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3129
|
+
int PMPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
3130
|
+
int PMPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
3131
|
+
int PMPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
3132
|
+
int PMPIX_Win_create_notify(MPI_Win win, int notification_num) MPICH_API_PUBLIC;
|
|
3133
|
+
int PMPIX_Win_free_notify(MPI_Win win) MPICH_API_PUBLIC;
|
|
3134
|
+
int PMPIX_Win_get_notify(MPI_Win win, int notification_idx, MPI_Count *notification)
|
|
3135
|
+
MPICH_API_PUBLIC;
|
|
3136
|
+
int PMPIX_Win_set_notify(MPI_Win win, int notification_idx, MPI_Count notification)
|
|
3137
|
+
MPICH_API_PUBLIC;
|
|
3138
|
+
int PMPIX_Win_get_notify_request(MPI_Win win, int notification_idx, MPI_Count expected_value,
|
|
3139
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3140
|
+
int PMPIX_Get_notify(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3141
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
3142
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
3143
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3144
|
+
int PMPIX_Get_notify_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3145
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3146
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
3147
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3148
|
+
int PMPIX_Put_notify(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3149
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
3150
|
+
MPI_Datatype target_datatype, int notification_idx, MPI_Win win)
|
|
3151
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3152
|
+
int PMPIX_Put_notify_c(const void *origin_addr, MPI_Count origin_count,
|
|
3153
|
+
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
3154
|
+
MPI_Count target_count, MPI_Datatype target_datatype, int notification_idx,
|
|
3155
|
+
MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3156
|
+
int PMPI_Status_c2f08(const MPI_Status *c_status, MPI_F08_status *f08_status) MPICH_API_PUBLIC;
|
|
3157
|
+
int PMPI_Status_f082c(const MPI_F08_status *f08_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
3158
|
+
int PMPI_Status_f082f(const MPI_F08_status *f08_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
3159
|
+
int PMPI_Status_f2f08(const MPI_Fint *f_status, MPI_F08_status *f08_status) MPICH_API_PUBLIC;
|
|
3160
|
+
int PMPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
3161
|
+
int PMPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup)
|
|
3162
|
+
MPICH_API_PUBLIC;
|
|
3163
|
+
int PMPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup)
|
|
3164
|
+
MPICH_API_PUBLIC;
|
|
3165
|
+
int PMPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
3166
|
+
int PMPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup)
|
|
3167
|
+
MPICH_API_PUBLIC;
|
|
3168
|
+
int PMPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup)
|
|
3169
|
+
MPICH_API_PUBLIC;
|
|
3170
|
+
int PMPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup)
|
|
3171
|
+
MPICH_API_PUBLIC;
|
|
3172
|
+
int PMPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup)
|
|
3173
|
+
MPICH_API_PUBLIC;
|
|
3174
|
+
int PMPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
3175
|
+
int PMPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
3176
|
+
int PMPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
3177
|
+
int ranks2[]) MPICH_API_PUBLIC;
|
|
3178
|
+
int PMPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
3179
|
+
int PMPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
3180
|
+
int PMPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
3181
|
+
int PMPI_Op_create_c(MPI_User_function_c *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
3182
|
+
int PMPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
3183
|
+
int PMPI_Parrived(MPI_Request request, int partition, int *flag) MPICH_API_PUBLIC;
|
|
3184
|
+
int PMPI_Pready(int partition, MPI_Request request) MPICH_API_PUBLIC;
|
|
3185
|
+
int PMPI_Pready_list(int length, const int array_of_partitions[], MPI_Request request)
|
|
3186
|
+
MPICH_API_PUBLIC;
|
|
3187
|
+
int PMPI_Pready_range(int partition_low, int partition_high, MPI_Request request) MPICH_API_PUBLIC;
|
|
3188
|
+
int PMPI_Precv_init(void *buf, int partitions, MPI_Count count, MPI_Datatype datatype, int dest,
|
|
3189
|
+
int tag, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3190
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_API_PUBLIC;
|
|
3191
|
+
int PMPI_Psend_init(const void *buf, int partitions, MPI_Count count, MPI_Datatype datatype,
|
|
3192
|
+
int dest, int tag, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
3193
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_API_PUBLIC;
|
|
3185
3194
|
int PMPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
3186
3195
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3187
3196
|
int PMPI_Bsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -3291,119 +3300,219 @@ int PMPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest,
|
|
|
3291
3300
|
int PMPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3292
3301
|
MPI_Comm comm, MPI_Request *request)
|
|
3293
3302
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3294
|
-
|
|
3295
|
-
int
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
int
|
|
3300
|
-
|
|
3301
|
-
int
|
|
3302
|
-
|
|
3303
|
-
int
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
int
|
|
3307
|
-
|
|
3308
|
-
int
|
|
3309
|
-
|
|
3310
|
-
int
|
|
3311
|
-
|
|
3312
|
-
int
|
|
3313
|
-
|
|
3314
|
-
int
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
int
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
int
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
int
|
|
3326
|
-
|
|
3327
|
-
int PMPI_Type_create_indexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
3328
|
-
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
3329
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3330
|
-
int PMPI_Type_create_resized_c(MPI_Datatype oldtype, MPI_Count lb, MPI_Count extent,
|
|
3331
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3332
|
-
int PMPI_Type_create_struct_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
3333
|
-
const MPI_Count array_of_displacements[],
|
|
3334
|
-
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
3335
|
-
MPICH_API_PUBLIC;
|
|
3336
|
-
int PMPI_Type_create_subarray_c(int ndims, const MPI_Count array_of_sizes[],
|
|
3337
|
-
const MPI_Count array_of_subsizes[],
|
|
3338
|
-
const MPI_Count array_of_starts[], int order, MPI_Datatype oldtype,
|
|
3339
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3340
|
-
int PMPI_Type_get_contents_c(MPI_Datatype datatype, MPI_Count max_integers, MPI_Count max_addresses,
|
|
3341
|
-
MPI_Count max_large_counts, MPI_Count max_datatypes,
|
|
3342
|
-
int array_of_integers[], MPI_Aint array_of_addresses[],
|
|
3343
|
-
MPI_Count array_of_large_counts[], MPI_Datatype array_of_datatypes[])
|
|
3344
|
-
MPICH_API_PUBLIC;
|
|
3345
|
-
int PMPI_Type_get_envelope_c(MPI_Datatype datatype, MPI_Count *num_integers,
|
|
3346
|
-
MPI_Count *num_addresses, MPI_Count *num_large_counts,
|
|
3347
|
-
MPI_Count *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
3348
|
-
int PMPI_Type_get_extent_c(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
3303
|
+
int PMPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
3304
|
+
int PMPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
3305
|
+
int PMPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
3306
|
+
MPI_Grequest_cancel_function *cancel_fn, void *extra_state,
|
|
3307
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3308
|
+
int PMPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
3309
|
+
int PMPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
3310
|
+
int PMPI_Request_get_status_all(int count, MPI_Request array_of_requests[], int *flag,
|
|
3311
|
+
MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
3312
|
+
int PMPI_Request_get_status_any(int count, MPI_Request array_of_requests[], int *indx, int *flag,
|
|
3313
|
+
MPI_Status *status) MPICH_API_PUBLIC;
|
|
3314
|
+
int PMPI_Request_get_status_some(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
3315
|
+
int array_of_indices[], MPI_Status *array_of_statuses)
|
|
3316
|
+
MPICH_API_PUBLIC;
|
|
3317
|
+
int PMPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
3318
|
+
int PMPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
3319
|
+
int PMPI_Status_get_error(MPI_Status *status, int *error) MPICH_API_PUBLIC;
|
|
3320
|
+
int PMPI_Status_get_source(MPI_Status *status, int *source) MPICH_API_PUBLIC;
|
|
3321
|
+
int PMPI_Status_get_tag(MPI_Status *status, int *tag) MPICH_API_PUBLIC;
|
|
3322
|
+
int PMPI_Status_set_error(MPI_Status *status, int error) MPICH_API_PUBLIC;
|
|
3323
|
+
int PMPI_Status_set_source(MPI_Status *status, int source) MPICH_API_PUBLIC;
|
|
3324
|
+
int PMPI_Status_set_tag(MPI_Status *status, int tag) MPICH_API_PUBLIC;
|
|
3325
|
+
int PMPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
3326
|
+
int PMPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
3327
|
+
int PMPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
3328
|
+
int PMPI_Testall(int count, MPI_Request array_of_requests[], int *flag,
|
|
3329
|
+
MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
3330
|
+
int PMPI_Testany(int count, MPI_Request array_of_requests[], int *indx, int *flag,
|
|
3331
|
+
MPI_Status *status) MPICH_API_PUBLIC;
|
|
3332
|
+
int PMPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
3333
|
+
int array_of_indices[], MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
3334
|
+
int PMPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
3335
|
+
int PMPI_Waitall(int count, MPI_Request array_of_requests[], MPI_Status *array_of_statuses)
|
|
3349
3336
|
MPICH_API_PUBLIC;
|
|
3350
|
-
int
|
|
3337
|
+
int PMPI_Waitany(int count, MPI_Request array_of_requests[], int *indx, MPI_Status *status)
|
|
3351
3338
|
MPICH_API_PUBLIC;
|
|
3352
|
-
int
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
int
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
int
|
|
3365
|
-
|
|
3366
|
-
int
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
int
|
|
3371
|
-
|
|
3339
|
+
int PMPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
3340
|
+
int array_of_indices[], MPI_Status *array_of_statuses) MPICH_API_PUBLIC;
|
|
3341
|
+
int PMPIX_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
3342
|
+
MPI_Grequest_cancel_function *cancel_fn,
|
|
3343
|
+
MPIX_Grequest_poll_function *poll_fn, MPIX_Grequest_wait_function *wait_fn,
|
|
3344
|
+
void *extra_state, MPI_Request *request) MPICH_API_PUBLIC;
|
|
3345
|
+
int PMPIX_Grequest_class_create(MPI_Grequest_query_function *query_fn,
|
|
3346
|
+
MPI_Grequest_free_function *free_fn,
|
|
3347
|
+
MPI_Grequest_cancel_function *cancel_fn,
|
|
3348
|
+
MPIX_Grequest_poll_function *poll_fn,
|
|
3349
|
+
MPIX_Grequest_wait_function *wait_fn,
|
|
3350
|
+
MPIX_Grequest_class *greq_class) MPICH_API_PUBLIC;
|
|
3351
|
+
int PMPIX_Grequest_class_allocate(MPIX_Grequest_class greq_class, void *extra_state,
|
|
3352
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3353
|
+
int PMPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3354
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
3355
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
3356
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3357
|
+
int PMPI_Accumulate_c(const 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_Op op, MPI_Win win)
|
|
3360
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3361
|
+
int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr) MPICH_API_PUBLIC;
|
|
3362
|
+
int PMPI_Compare_and_swap(const void *origin_addr, const void *compare_addr, void *result_addr,
|
|
3363
|
+
MPI_Datatype datatype, int target_rank, MPI_Aint target_disp,
|
|
3364
|
+
MPI_Win win) MPICH_API_PUBLIC;
|
|
3365
|
+
int PMPI_Fetch_and_op(const void *origin_addr, void *result_addr, MPI_Datatype datatype,
|
|
3366
|
+
int target_rank, MPI_Aint target_disp, MPI_Op op, MPI_Win win)
|
|
3367
|
+
MPICH_API_PUBLIC;
|
|
3368
|
+
int PMPI_Free_mem(void *base) MPICH_API_PUBLIC;
|
|
3369
|
+
int PMPI_Get(void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
|
|
3370
|
+
MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win)
|
|
3371
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3372
3372
|
int PMPI_Get_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3373
3373
|
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3374
3374
|
MPI_Datatype target_datatype, MPI_Win win)
|
|
3375
3375
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3376
|
+
int PMPI_Get_accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3377
|
+
void *result_addr, int result_count, MPI_Datatype result_datatype,
|
|
3378
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
3379
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
3380
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3376
3381
|
int PMPI_Get_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3377
3382
|
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
3378
3383
|
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
3379
3384
|
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
3380
3385
|
MPI_Win win)
|
|
3381
3386
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3387
|
+
int PMPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3388
|
+
int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype,
|
|
3389
|
+
MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3382
3390
|
int PMPI_Put_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3383
3391
|
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3384
3392
|
MPI_Datatype target_datatype, MPI_Win win)
|
|
3385
3393
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3394
|
+
int PMPI_Raccumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3395
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
3396
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win, MPI_Request *request)
|
|
3397
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3386
3398
|
int PMPI_Raccumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3387
3399
|
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
3388
3400
|
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
3389
3401
|
MPI_Request *request)
|
|
3390
3402
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3403
|
+
int PMPI_Rget(void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
|
|
3404
|
+
MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
3405
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3391
3406
|
int PMPI_Rget_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3392
3407
|
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3393
3408
|
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
3394
3409
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3410
|
+
int PMPI_Rget_accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3411
|
+
void *result_addr, int result_count, MPI_Datatype result_datatype,
|
|
3412
|
+
int target_rank, MPI_Aint target_disp, int target_count,
|
|
3413
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
3414
|
+
MPI_Request *request)
|
|
3415
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3395
3416
|
int PMPI_Rget_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3396
3417
|
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
3397
3418
|
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
3398
3419
|
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
3399
3420
|
MPI_Win win, MPI_Request *request)
|
|
3400
3421
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
3422
|
+
int PMPI_Rput(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
3423
|
+
int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype,
|
|
3424
|
+
MPI_Win win, MPI_Request *request)
|
|
3425
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3401
3426
|
int PMPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3402
3427
|
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3403
3428
|
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
3404
3429
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3405
|
-
|
|
3430
|
+
int PMPI_Win_allocate(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, void *baseptr,
|
|
3431
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
3432
|
+
int PMPI_Win_allocate_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3433
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
3434
|
+
int PMPI_Win_allocate_shared(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3435
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
3436
|
+
int PMPI_Win_allocate_shared_c(MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3437
|
+
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
3438
|
+
int PMPI_Win_attach(MPI_Win win, void *base, MPI_Aint size) MPICH_API_PUBLIC;
|
|
3439
|
+
int PMPI_Win_complete(MPI_Win win) MPICH_API_PUBLIC;
|
|
3440
|
+
int PMPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3441
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
3442
|
+
int PMPI_Win_create_c(void *base, MPI_Aint size, MPI_Aint disp_unit, MPI_Info info, MPI_Comm comm,
|
|
3443
|
+
MPI_Win *win) MPICH_API_PUBLIC;
|
|
3444
|
+
int PMPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win) MPICH_API_PUBLIC;
|
|
3445
|
+
int PMPI_Win_detach(MPI_Win win, const void *base) MPICH_API_PUBLIC;
|
|
3446
|
+
int PMPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
3447
|
+
int PMPI_Win_flush(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
3448
|
+
int PMPI_Win_flush_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
3449
|
+
int PMPI_Win_flush_local(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
3450
|
+
int PMPI_Win_flush_local_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
3451
|
+
int PMPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
3452
|
+
int PMPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
3453
|
+
int PMPI_Win_get_info(MPI_Win win, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
3454
|
+
int PMPI_Win_get_name(MPI_Win win, char *win_name, int *resultlen) MPICH_API_PUBLIC;
|
|
3455
|
+
int PMPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
3456
|
+
int PMPI_Win_lock_all(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
3457
|
+
int PMPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
3458
|
+
int PMPI_Win_set_info(MPI_Win win, MPI_Info info) MPICH_API_PUBLIC;
|
|
3459
|
+
int PMPI_Win_set_name(MPI_Win win, const char *win_name) MPICH_API_PUBLIC;
|
|
3460
|
+
int PMPI_Win_shared_query(MPI_Win win, int rank, MPI_Aint *size, int *disp_unit, void *baseptr)
|
|
3461
|
+
MPICH_API_PUBLIC;
|
|
3462
|
+
int PMPI_Win_shared_query_c(MPI_Win win, int rank, MPI_Aint *size, MPI_Aint *disp_unit,
|
|
3463
|
+
void *baseptr) MPICH_API_PUBLIC;
|
|
3464
|
+
int PMPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
3465
|
+
int PMPI_Win_sync(MPI_Win win) MPICH_API_PUBLIC;
|
|
3466
|
+
int PMPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
3467
|
+
int PMPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
3468
|
+
int PMPI_Win_unlock_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
3469
|
+
int PMPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
3470
|
+
int PMPI_Comm_create_from_group(MPI_Group group, const char *stringtag, MPI_Info info,
|
|
3471
|
+
MPI_Errhandler errhandler, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
3472
|
+
int PMPI_Group_from_session_pset(MPI_Session session, const char *pset_name, MPI_Group *newgroup)
|
|
3473
|
+
MPICH_API_PUBLIC;
|
|
3474
|
+
int PMPI_Session_call_errhandler(MPI_Session session, int errorcode) MPICH_API_PUBLIC;
|
|
3475
|
+
int PMPI_Session_create_errhandler(MPI_Session_errhandler_function *session_errhandler_fn,
|
|
3476
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3477
|
+
int PMPI_Session_finalize(MPI_Session *session) MPICH_API_PUBLIC;
|
|
3478
|
+
int PMPI_Session_get_errhandler(MPI_Session session, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3479
|
+
int PMPI_Session_get_info(MPI_Session session, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
3480
|
+
int PMPI_Session_get_nth_pset(MPI_Session session, MPI_Info info, int n, int *pset_len,
|
|
3481
|
+
char *pset_name) MPICH_API_PUBLIC;
|
|
3482
|
+
int PMPI_Session_get_num_psets(MPI_Session session, MPI_Info info, int *npset_names)
|
|
3483
|
+
MPICH_API_PUBLIC;
|
|
3484
|
+
int PMPI_Session_get_pset_info(MPI_Session session, const char *pset_name, MPI_Info *info)
|
|
3485
|
+
MPICH_API_PUBLIC;
|
|
3486
|
+
int PMPI_Session_init(MPI_Info info, MPI_Errhandler errhandler, MPI_Session *session)
|
|
3487
|
+
MPICH_API_PUBLIC;
|
|
3488
|
+
int PMPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
3489
|
+
int PMPI_Close_port(const char *port_name) MPICH_API_PUBLIC;
|
|
3490
|
+
int PMPI_Comm_accept(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
3491
|
+
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
3492
|
+
int PMPI_Comm_connect(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
3493
|
+
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
3494
|
+
int PMPI_Comm_disconnect(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
3495
|
+
int PMPI_Comm_get_parent(MPI_Comm *parent) MPICH_API_PUBLIC;
|
|
3496
|
+
int PMPI_Comm_join(int fd, MPI_Comm *intercomm) MPICH_API_PUBLIC;
|
|
3497
|
+
int PMPI_Comm_spawn(const char *command, char *argv[], int maxprocs, MPI_Info info, int root,
|
|
3498
|
+
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
3499
|
+
int PMPI_Comm_spawn_multiple(int count, char *array_of_commands[], char **array_of_argv[],
|
|
3500
|
+
const int array_of_maxprocs[], const MPI_Info array_of_info[],
|
|
3501
|
+
int root, MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[])
|
|
3502
|
+
MPICH_API_PUBLIC;
|
|
3503
|
+
int PMPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
3504
|
+
int PMPI_Open_port(MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
3505
|
+
int PMPI_Publish_name(const char *service_name, MPI_Info info, const char *port_name)
|
|
3506
|
+
MPICH_API_PUBLIC;
|
|
3507
|
+
int PMPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port_name)
|
|
3508
|
+
MPICH_API_PUBLIC;
|
|
3509
|
+
double PMPI_Wtick(void) MPICH_API_PUBLIC;
|
|
3510
|
+
double PMPI_Wtime(void) MPICH_API_PUBLIC;
|
|
3511
|
+
/* End Skip Prototypes */
|
|
3512
|
+
#endif /* MPI_BUILD_PROFILING */
|
|
3513
|
+
|
|
3406
3514
|
/* End of MPI bindings */
|
|
3515
|
+
/* End Prototypes */
|
|
3407
3516
|
|
|
3408
3517
|
/* feature advertisement */
|
|
3409
3518
|
#define MPIIMPL_ADVERTISES_FEATURES 1
|
|
@@ -3423,14 +3532,6 @@ int PMPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype or
|
|
|
3423
3532
|
#define MPIX_GPU_SUPPORT_CUDA (0)
|
|
3424
3533
|
#define MPIX_GPU_SUPPORT_ZE (1)
|
|
3425
3534
|
#define MPIX_GPU_SUPPORT_DEVICE_INITIATED (3)
|
|
3426
|
-
int MPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
3427
|
-
int MPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
3428
|
-
int MPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
3429
|
-
#ifdef MPI_BUILD_PROFILING
|
|
3430
|
-
int PMPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
3431
|
-
int PMPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
3432
|
-
int PMPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
3433
|
-
#endif
|
|
3434
3535
|
#if defined(__cplusplus)
|
|
3435
3536
|
}
|
|
3436
3537
|
/* Add the C++ bindings */
|
|
@@ -3449,39 +3550,4 @@ int PMPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
|
3449
3550
|
#endif
|
|
3450
3551
|
#endif
|
|
3451
3552
|
|
|
3452
|
-
/* Generalized requests extensions */
|
|
3453
|
-
typedef int MPIX_Grequest_class;
|
|
3454
|
-
int MPIX_Grequest_class_create(MPI_Grequest_query_function *query_fn,
|
|
3455
|
-
MPI_Grequest_free_function *free_fn,
|
|
3456
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
3457
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
3458
|
-
MPIX_Grequest_wait_function *wait_fn,
|
|
3459
|
-
MPIX_Grequest_class *greq_class) MPICH_API_PUBLIC;
|
|
3460
|
-
int MPIX_Grequest_class_allocate(MPIX_Grequest_class greq_class, void *extra_state,
|
|
3461
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3462
|
-
int MPIX_Grequest_start(MPI_Grequest_query_function *query_fn,
|
|
3463
|
-
MPI_Grequest_free_function *free_fn,
|
|
3464
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
3465
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
3466
|
-
MPIX_Grequest_wait_function *wait_fn, void *extra_state,
|
|
3467
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3468
|
-
|
|
3469
|
-
#if !defined(MPI_BUILD_PROFILING)
|
|
3470
|
-
/* Generalized requests extensions */
|
|
3471
|
-
int PMPIX_Grequest_class_create(MPI_Grequest_query_function *query_fn,
|
|
3472
|
-
MPI_Grequest_free_function *free_fn,
|
|
3473
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
3474
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
3475
|
-
MPIX_Grequest_wait_function *wait_fn,
|
|
3476
|
-
MPIX_Grequest_class *greq_class) MPICH_API_PUBLIC;
|
|
3477
|
-
int PMPIX_Grequest_class_allocate(MPIX_Grequest_class greq_class, void *extra_state,
|
|
3478
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3479
|
-
int PMPIX_Grequest_start(MPI_Grequest_query_function *query_fn,
|
|
3480
|
-
MPI_Grequest_free_function *free_fn,
|
|
3481
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
3482
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
3483
|
-
MPIX_Grequest_wait_function *wait_fn, void *extra_state,
|
|
3484
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
3485
|
-
#endif /* MPI_BUILD_PROFILING */
|
|
3486
|
-
|
|
3487
3553
|
#endif
|