impi-devel 2021.14.2__py2.py3-none-win_amd64.whl → 2021.16.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.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpicc.bat +1 -6
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpicl.bat +7 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpicxx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpif77.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpif90.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpifc.bat +1 -6
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicc.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicpc.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicpx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiifort.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiifx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/include/mpi.h +508 -350
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/include/mpicxx.h +9 -9
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/lib/impi.lib +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/share/doc/mpi/licensing/third-party-programs.txt +1 -1
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/METADATA +2 -2
- impi_devel-2021.16.0.dist-info/RECORD +24 -0
- impi_devel-2021.14.2.dist-info/RECORD +0 -24
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/include/mpio.h +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/share/doc/mpi/licensing/license.txt +0 -0
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/WHEEL +0 -0
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/top_level.txt +0 -0
|
@@ -502,7 +502,7 @@ typedef void (MPI_User_function_c) ( void *, void *, MPI_Count *, MPI_Datatype *
|
|
|
502
502
|
typedef int (MPI_Copy_function) ( MPI_Comm, int, void *, void *, void *, int * );
|
|
503
503
|
typedef int (MPI_Delete_function) ( MPI_Comm, int, void *, void * );
|
|
504
504
|
|
|
505
|
-
#define MPI_VERSION
|
|
505
|
+
#define MPI_VERSION 4
|
|
506
506
|
#define MPI_SUBVERSION 1
|
|
507
507
|
#define MPICH_NAME 3
|
|
508
508
|
#define MPICH 1
|
|
@@ -567,8 +567,8 @@ typedef int (MPI_Delete_function) ( MPI_Comm, int, void *, void * );
|
|
|
567
567
|
* digits for REV, 1 digit for EXT and 2 digits for EXT_NUMBER. So,
|
|
568
568
|
* 2019.0.0b0 will have the numeric version 20190000100.
|
|
569
569
|
*/
|
|
570
|
-
#define I_MPI_VERSION "2021.
|
|
571
|
-
#define I_MPI_NUMVERSION
|
|
570
|
+
#define I_MPI_VERSION "2021.16.0"
|
|
571
|
+
#define I_MPI_NUMVERSION 20211600300
|
|
572
572
|
|
|
573
573
|
/* for the datatype decoders */
|
|
574
574
|
enum MPIR_Combiner_enum {
|
|
@@ -590,7 +590,8 @@ enum MPIR_Combiner_enum {
|
|
|
590
590
|
MPI_COMBINER_F90_COMPLEX = 16,
|
|
591
591
|
MPI_COMBINER_F90_INTEGER = 17,
|
|
592
592
|
MPI_COMBINER_RESIZED = 18,
|
|
593
|
-
MPI_COMBINER_HINDEXED_BLOCK = 19
|
|
593
|
+
MPI_COMBINER_HINDEXED_BLOCK = 19,
|
|
594
|
+
MPI_COMBINER_VALUE_INDEX = 20
|
|
594
595
|
};
|
|
595
596
|
|
|
596
597
|
/* for info */
|
|
@@ -668,11 +669,15 @@ struct MPIR_T_enum_s;
|
|
|
668
669
|
struct MPIR_T_cvar_handle_s;
|
|
669
670
|
struct MPIR_T_pvar_handle_s;
|
|
670
671
|
struct MPIR_T_pvar_session_s;
|
|
672
|
+
struct MPIR_T_event_registration_s;
|
|
673
|
+
struct MPIR_T_event_instance_s;
|
|
671
674
|
|
|
672
675
|
typedef struct MPIR_T_enum_s * MPI_T_enum;
|
|
673
676
|
typedef struct MPIR_T_cvar_handle_s * MPI_T_cvar_handle;
|
|
674
677
|
typedef struct MPIR_T_pvar_handle_s * MPI_T_pvar_handle;
|
|
675
678
|
typedef struct MPIR_T_pvar_session_s * MPI_T_pvar_session;
|
|
679
|
+
typedef struct MPIR_T_event_registration_s * MPI_T_event_registration;
|
|
680
|
+
typedef struct MPIR_T_event_instance_s * MPI_T_event_instance;
|
|
676
681
|
|
|
677
682
|
/* extra const at front would be safer, but is incompatible with MPI_T_ prototypes */
|
|
678
683
|
extern MPIU_DLL_SPEC struct MPIR_T_pvar_handle_s * const MPI_T_PVAR_ALL_HANDLES MPICH_API_PUBLIC;
|
|
@@ -758,6 +763,22 @@ typedef enum MPIR_T_pvar_class_t {
|
|
|
758
763
|
MPIR_T_PVAR_CLASS_NUMBER = MPIR_T_PVAR_CLASS_LAST - MPIR_T_PVAR_CLASS_FIRST
|
|
759
764
|
} MPIR_T_pvar_class_t;
|
|
760
765
|
|
|
766
|
+
typedef enum MPI_T_cb_safety {
|
|
767
|
+
MPI_T_CB_REQUIRE_NONE = 0,
|
|
768
|
+
MPI_T_CB_REQUIRE_MPI_RESTRICTED,
|
|
769
|
+
MPI_T_CB_REQUIRE_THREAD_SAFE,
|
|
770
|
+
MPI_T_CB_REQUIRE_ASYNC_SIGNAL_SAFE
|
|
771
|
+
} MPI_T_cb_safety;
|
|
772
|
+
|
|
773
|
+
typedef enum MPI_T_source_order {
|
|
774
|
+
MPI_T_SOURCE_ORDERED = 0,
|
|
775
|
+
MPI_T_SOURCE_UNORDERED
|
|
776
|
+
} MPI_T_source_order;
|
|
777
|
+
|
|
778
|
+
typedef void (MPI_T_event_cb_function)(MPI_T_event_instance event_instance, MPI_T_event_registration event_registration, MPI_T_cb_safety cb_safety, void *user_data);
|
|
779
|
+
typedef void (MPI_T_event_free_cb_function)(MPI_T_event_registration event_registration, MPI_T_cb_safety cb_safety, void *user_data);
|
|
780
|
+
typedef void (MPI_T_event_dropped_cb_function)(int count, MPI_T_event_registration event_registration, int source_index, MPI_T_cb_safety cb_safety, void *user_data);
|
|
781
|
+
|
|
761
782
|
/* Handle conversion types/functions */
|
|
762
783
|
|
|
763
784
|
/* Programs that need to convert types used in MPICH should use these */
|
|
@@ -966,10 +987,13 @@ typedef int (MPIX_Grequest_wait_function)(int, void **, double, MPI_Status *);
|
|
|
966
987
|
#define MPI_ERR_SESSION 75 /* Invalid session handle */
|
|
967
988
|
#define MPI_ERR_PROC_ABORTED 76 /* Trying to communicate with aborted processes */
|
|
968
989
|
#define MPI_ERR_VALUE_TOO_LARGE 77 /* Value is too large to store */
|
|
990
|
+
#define MPI_T_ERR_NOT_SUPPORTED 78 /* Requested functionality not supported */
|
|
991
|
+
#define MPI_T_ERR_NOT_ACCESSIBLE 79 /* Requested functionality not accessible */
|
|
969
992
|
|
|
993
|
+
#define MPI_ERR_ERRHANDLER 80 /* Invalid errhandler handle */
|
|
970
994
|
#define MPI_ERR_LASTCODE 0x3fffffff /* Last valid error code for a
|
|
971
995
|
predefined error class */
|
|
972
|
-
#define MPICH_ERR_LAST_CLASS
|
|
996
|
+
#define MPICH_ERR_LAST_CLASS 80 /* It is also helpful to know the
|
|
973
997
|
last valid class */
|
|
974
998
|
|
|
975
999
|
#define MPICH_ERR_FIRST_MPIX 100 /* Define a gap here because sock is
|
|
@@ -1020,130 +1044,11 @@ typedef struct {
|
|
|
1020
1044
|
#ifndef MPICH_SUPPRESS_PROTOTYPES
|
|
1021
1045
|
/* We require that the C compiler support prototypes */
|
|
1022
1046
|
/* Begin Prototypes */
|
|
1023
|
-
int MPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1024
|
-
int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1025
|
-
int MPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1026
|
-
int MPI_Waitany(int count, MPI_Request array_of_requests[], int *indx, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1027
|
-
int MPI_Testany(int count, MPI_Request array_of_requests[], int *indx, int *flag,
|
|
1028
|
-
MPI_Status *status) MPICH_API_PUBLIC;
|
|
1029
|
-
int MPI_Waitall(int count, MPI_Request array_of_requests[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1030
|
-
int MPI_Testall(int count, MPI_Request array_of_requests[], int *flag,
|
|
1031
|
-
MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1032
|
-
int MPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1033
|
-
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1034
|
-
int MPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1035
|
-
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1036
|
-
int MPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1037
|
-
int MPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1038
|
-
int MPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1039
|
-
int MPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1040
|
-
int MPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn,
|
|
1041
|
-
int *keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1042
|
-
int MPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
1043
|
-
int MPI_Attr_put(MPI_Comm comm, int keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1044
|
-
int MPI_Attr_get(MPI_Comm comm, int keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1045
|
-
int MPI_Attr_delete(MPI_Comm comm, int keyval) MPICH_API_PUBLIC;
|
|
1046
|
-
int MPI_Topo_test(MPI_Comm comm, int *status) MPICH_API_PUBLIC;
|
|
1047
|
-
int MPI_Cart_create(MPI_Comm comm_old, int ndims, const int dims[], const int periods[],
|
|
1048
|
-
int reorder, MPI_Comm *comm_cart) MPICH_API_PUBLIC;
|
|
1049
|
-
int MPI_Dims_create(int nnodes, int ndims, int dims[]) MPICH_API_PUBLIC;
|
|
1050
|
-
int MPI_Graph_create(MPI_Comm comm_old, int nnodes, const int indx[], const int edges[],
|
|
1051
|
-
int reorder, MPI_Comm *comm_graph) MPICH_API_PUBLIC;
|
|
1052
|
-
int MPI_Graphdims_get(MPI_Comm comm, int *nnodes, int *nedges) MPICH_API_PUBLIC;
|
|
1053
|
-
int MPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges, int indx[], int edges[]) MPICH_API_PUBLIC;
|
|
1054
|
-
int MPI_Cartdim_get(MPI_Comm comm, int *ndims) MPICH_API_PUBLIC;
|
|
1055
|
-
int MPI_Cart_get(MPI_Comm comm, int maxdims, int dims[], int periods[], int coords[]) MPICH_API_PUBLIC;
|
|
1056
|
-
int MPI_Cart_rank(MPI_Comm comm, const int coords[], int *rank) MPICH_API_PUBLIC;
|
|
1057
|
-
int MPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int coords[]) MPICH_API_PUBLIC;
|
|
1058
|
-
int MPI_Graph_neighbors_count(MPI_Comm comm, int rank, int *nneighbors) MPICH_API_PUBLIC;
|
|
1059
|
-
int MPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors, int neighbors[]) MPICH_API_PUBLIC;
|
|
1060
|
-
int MPI_Cart_shift(MPI_Comm comm, int direction, int disp, int *rank_source, int *rank_dest) MPICH_API_PUBLIC;
|
|
1061
|
-
int MPI_Cart_sub(MPI_Comm comm, const int remain_dims[], MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1062
|
-
int MPI_Cart_map(MPI_Comm comm, int ndims, const int dims[], const int periods[], int *newrank) MPICH_API_PUBLIC;
|
|
1063
|
-
int MPI_Graph_map(MPI_Comm comm, int nnodes, const int indx[], const int edges[], int *newrank) MPICH_API_PUBLIC;
|
|
1064
|
-
int MPI_Get_processor_name(char *name, int *resultlen) MPICH_API_PUBLIC;
|
|
1065
|
-
int MPI_Get_version(int *version, int *subversion) MPICH_API_PUBLIC;
|
|
1066
|
-
int MPI_Get_library_version(char *version, int *resultlen) MPICH_API_PUBLIC;
|
|
1067
|
-
int MPI_Errhandler_create(MPI_Handler_function *function, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1068
|
-
int MPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1069
|
-
int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1070
|
-
int MPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1071
|
-
int MPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1072
|
-
int MPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1073
|
-
int MPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1074
|
-
int MPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1075
|
-
int MPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
1076
|
-
int MPI_Abort(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
1077
|
-
|
|
1078
|
-
/* Note that we may need to define a @PCONTROL_LIST@ depending on whether
|
|
1079
|
-
stdargs are supported */
|
|
1080
|
-
int MPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
1081
1047
|
int MPI_DUP_FN(MPI_Comm oldcomm, int keyval, void *extra_state, void *attribute_val_in,
|
|
1082
1048
|
void *attribute_val_out, int *flag) MPICH_API_PUBLIC;
|
|
1083
1049
|
|
|
1084
|
-
/* MPI notification extentions */
|
|
1085
|
-
/* External Interfaces */
|
|
1086
|
-
int MPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
1087
|
-
int MPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
1088
|
-
int MPI_Add_error_string(int errorcode, const char *string) MPICH_API_PUBLIC;
|
|
1089
|
-
int MPI_Comm_call_errhandler(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
1090
|
-
int MPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
1091
|
-
MPI_Comm_delete_attr_function *comm_delete_attr_fn, int *comm_keyval,
|
|
1092
|
-
void *extra_state) MPICH_API_PUBLIC;
|
|
1093
|
-
int MPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
1094
|
-
int MPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
1095
|
-
int MPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1096
|
-
int MPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1097
|
-
int MPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
1098
|
-
int MPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
1099
|
-
int MPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
1100
|
-
MPI_Grequest_cancel_function *cancel_fn, void *extra_state,
|
|
1101
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1102
|
-
int MPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH_API_PUBLIC;
|
|
1103
|
-
int MPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
1104
|
-
int MPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
1105
|
-
int MPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
1106
|
-
int MPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
1107
|
-
MPI_Type_delete_attr_function *type_delete_attr_fn,
|
|
1108
|
-
int *type_keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1109
|
-
int MPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
1110
|
-
int MPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
1111
|
-
int MPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1112
|
-
int MPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1113
|
-
int MPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
1114
|
-
int MPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
1115
|
-
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
1116
|
-
void *extra_state) MPICH_API_PUBLIC;
|
|
1117
|
-
int MPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
1118
|
-
int MPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
1119
|
-
int MPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1120
|
-
int MPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1121
|
-
|
|
1122
|
-
int MPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1123
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1124
|
-
int MPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1125
|
-
int MPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1126
|
-
int MPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn,
|
|
1127
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1128
|
-
int MPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1129
|
-
int MPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1130
|
-
int MPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
1131
|
-
int MPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1132
|
-
int MPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
1133
|
-
int MPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
1134
|
-
int MPI_Info_free(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1135
|
-
int MPI_Info_get(MPI_Info info, const char *key, int valuelen, char *value, int *flag) MPICH_API_PUBLIC;
|
|
1136
|
-
int MPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
1137
|
-
int MPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
1138
|
-
int MPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag) MPICH_API_PUBLIC;
|
|
1139
|
-
int MPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
1140
|
-
int MPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1141
1050
|
int MPI_Status_c2f(const MPI_Status *c_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
1142
1051
|
int MPI_Status_f2c(const MPI_Fint *f_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
1143
|
-
int MPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
1144
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1145
|
-
int MPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1146
|
-
int MPI_Win_set_errhandler(MPI_Win win, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1147
1052
|
|
|
1148
1053
|
/* Fortran 90-related functions. These routines are available only if
|
|
1149
1054
|
Fortran 90 support is enabled
|
|
@@ -1152,63 +1057,10 @@ int MPI_Type_create_f90_integer(int range, MPI_Datatype *newtype) MPICH_API_PUBL
|
|
|
1152
1057
|
int MPI_Type_create_f90_real(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1153
1058
|
int MPI_Type_create_f90_complex(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1154
1059
|
|
|
1155
|
-
int MPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
1156
|
-
const int sourceweights[], int outdegree,
|
|
1157
|
-
const int destinations[], const int destweights[],
|
|
1158
|
-
MPI_Info info, int reorder, MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
1159
|
-
int MPI_Dist_graph_create(MPI_Comm comm_old, int n, const int sources[], const int degrees[],
|
|
1160
|
-
const int destinations[], const int weights[], MPI_Info info,
|
|
1161
|
-
int reorder, MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
1162
|
-
int MPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree, int *weighted) MPICH_API_PUBLIC;
|
|
1163
|
-
int MPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
1164
|
-
int maxoutdegree, int destinations[], int destweights[]) MPICH_API_PUBLIC;
|
|
1165
|
-
|
|
1166
|
-
/* MPI_Aint addressing arithmetic */
|
|
1167
|
-
MPI_Aint MPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
1168
|
-
MPI_Aint MPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
1169
|
-
|
|
1170
1060
|
/* MPI_T interface */
|
|
1171
1061
|
/* The MPI_T routines are available only in C bindings - tell tools that they
|
|
1172
1062
|
can skip these prototypes */
|
|
1173
1063
|
/* Begin Skip Prototypes */
|
|
1174
|
-
int MPI_T_init_thread(int required, int *provided) MPICH_API_PUBLIC;
|
|
1175
|
-
int MPI_T_finalize(void) MPICH_API_PUBLIC;
|
|
1176
|
-
int MPI_T_enum_get_info(MPI_T_enum enumtype, int *num, char *name, int *name_len) MPICH_API_PUBLIC;
|
|
1177
|
-
int MPI_T_enum_get_item(MPI_T_enum enumtype, int indx, int *value, char *name, int *name_len) MPICH_API_PUBLIC;
|
|
1178
|
-
int MPI_T_cvar_get_num(int *num_cvar) MPICH_API_PUBLIC;
|
|
1179
|
-
int MPI_T_cvar_get_info(int cvar_index, char *name, int *name_len, int *verbosity,
|
|
1180
|
-
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
1181
|
-
int *binding, int *scope) MPICH_API_PUBLIC;
|
|
1182
|
-
int MPI_T_cvar_handle_alloc(int cvar_index, void *obj_handle, MPI_T_cvar_handle *handle,
|
|
1183
|
-
int *count) MPICH_API_PUBLIC;
|
|
1184
|
-
int MPI_T_cvar_handle_free(MPI_T_cvar_handle *handle) MPICH_API_PUBLIC;
|
|
1185
|
-
int MPI_T_cvar_read(MPI_T_cvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1186
|
-
int MPI_T_cvar_write(MPI_T_cvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
1187
|
-
int MPI_T_pvar_get_num(int *num_pvar) MPICH_API_PUBLIC;
|
|
1188
|
-
int MPI_T_pvar_get_info(int pvar_index, char *name, int *name_len, int *verbosity, int *var_class,
|
|
1189
|
-
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
1190
|
-
int *binding, int *readonly, int *continuous, int *atomic) MPICH_API_PUBLIC;
|
|
1191
|
-
int MPI_T_pvar_session_create(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
1192
|
-
int MPI_T_pvar_session_free(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
1193
|
-
int MPI_T_pvar_handle_alloc(MPI_T_pvar_session session, int pvar_index, void *obj_handle,
|
|
1194
|
-
MPI_T_pvar_handle *handle, int *count) MPICH_API_PUBLIC;
|
|
1195
|
-
int MPI_T_pvar_handle_free(MPI_T_pvar_session session, MPI_T_pvar_handle *handle) MPICH_API_PUBLIC;
|
|
1196
|
-
int MPI_T_pvar_start(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1197
|
-
int MPI_T_pvar_stop(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1198
|
-
int MPI_T_pvar_read(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1199
|
-
int MPI_T_pvar_write(MPI_T_pvar_session session, MPI_T_pvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
1200
|
-
int MPI_T_pvar_reset(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1201
|
-
int MPI_T_pvar_readreset(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1202
|
-
int MPI_T_category_get_num(int *num_cat) MPICH_API_PUBLIC;
|
|
1203
|
-
int MPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
1204
|
-
int *num_cvars, int *num_pvars, int *num_categories) MPICH_API_PUBLIC;
|
|
1205
|
-
int MPI_T_category_get_cvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1206
|
-
int MPI_T_category_get_pvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1207
|
-
int MPI_T_category_get_categories(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1208
|
-
int MPI_T_category_changed(int *stamp) MPICH_API_PUBLIC;
|
|
1209
|
-
int MPI_T_cvar_get_index(const char *name, int *cvar_index) MPICH_API_PUBLIC;
|
|
1210
|
-
int MPI_T_pvar_get_index(const char *name, int var_class, int *pvar_index) MPICH_API_PUBLIC;
|
|
1211
|
-
int MPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
1212
1064
|
/* End Skip Prototypes */
|
|
1213
1065
|
|
|
1214
1066
|
|
|
@@ -1218,129 +1070,8 @@ int MPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
|
1218
1070
|
/* Here are the bindings of the profiling routines */
|
|
1219
1071
|
/* Begin Skip Prototypes */
|
|
1220
1072
|
#if !defined(MPI_BUILD_PROFILING)
|
|
1221
|
-
int PMPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1222
|
-
int PMPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1223
|
-
int PMPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1224
|
-
int PMPI_Waitany(int count, MPI_Request array_of_requests[], int *indx, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1225
|
-
int PMPI_Testany(int count, MPI_Request array_of_requests[], int *indx, int *flag,
|
|
1226
|
-
MPI_Status *status) MPICH_API_PUBLIC;
|
|
1227
|
-
int PMPI_Waitall(int count, MPI_Request array_of_requests[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1228
|
-
int PMPI_Testall(int count, MPI_Request array_of_requests[], int *flag,
|
|
1229
|
-
MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1230
|
-
int PMPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1231
|
-
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1232
|
-
int PMPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1233
|
-
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1234
|
-
int PMPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1235
|
-
int PMPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1236
|
-
int PMPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1237
|
-
int PMPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1238
|
-
int PMPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn,
|
|
1239
|
-
int *keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1240
|
-
int PMPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
1241
|
-
int PMPI_Attr_put(MPI_Comm comm, int keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1242
|
-
int PMPI_Attr_get(MPI_Comm comm, int keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1243
|
-
int PMPI_Attr_delete(MPI_Comm comm, int keyval) MPICH_API_PUBLIC;
|
|
1244
|
-
int PMPI_Topo_test(MPI_Comm comm, int *status) MPICH_API_PUBLIC;
|
|
1245
|
-
int PMPI_Cart_create(MPI_Comm comm_old, int ndims, const int dims[], const int periods[],
|
|
1246
|
-
int reorder, MPI_Comm *comm_cart) MPICH_API_PUBLIC;
|
|
1247
|
-
int PMPI_Dims_create(int nnodes, int ndims, int dims[]) MPICH_API_PUBLIC;
|
|
1248
|
-
int PMPI_Graph_create(MPI_Comm comm_old, int nnodes, const int indx[], const int edges[],
|
|
1249
|
-
int reorder, MPI_Comm *comm_graph) MPICH_API_PUBLIC;
|
|
1250
|
-
int PMPI_Graphdims_get(MPI_Comm comm, int *nnodes, int *nedges) MPICH_API_PUBLIC;
|
|
1251
|
-
int PMPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges, int indx[], int edges[]) MPICH_API_PUBLIC;
|
|
1252
|
-
int PMPI_Cartdim_get(MPI_Comm comm, int *ndims) MPICH_API_PUBLIC;
|
|
1253
|
-
int PMPI_Cart_get(MPI_Comm comm, int maxdims, int dims[], int periods[], int coords[]) MPICH_API_PUBLIC;
|
|
1254
|
-
int PMPI_Cart_rank(MPI_Comm comm, const int coords[], int *rank) MPICH_API_PUBLIC;
|
|
1255
|
-
int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int coords[]) MPICH_API_PUBLIC;
|
|
1256
|
-
int PMPI_Graph_neighbors_count(MPI_Comm comm, int rank, int *nneighbors) MPICH_API_PUBLIC;
|
|
1257
|
-
int PMPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors, int neighbors[]) MPICH_API_PUBLIC;
|
|
1258
|
-
int PMPI_Cart_shift(MPI_Comm comm, int direction, int disp, int *rank_source, int *rank_dest) MPICH_API_PUBLIC;
|
|
1259
|
-
int PMPI_Cart_sub(MPI_Comm comm, const int remain_dims[], MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1260
|
-
int PMPI_Cart_map(MPI_Comm comm, int ndims, const int dims[], const int periods[], int *newrank) MPICH_API_PUBLIC;
|
|
1261
|
-
int PMPI_Graph_map(MPI_Comm comm, int nnodes, const int indx[], const int edges[], int *newrank) MPICH_API_PUBLIC;
|
|
1262
|
-
int PMPI_Get_processor_name(char *name, int *resultlen) MPICH_API_PUBLIC;
|
|
1263
|
-
int PMPI_Get_version(int *version, int *subversion) MPICH_API_PUBLIC;
|
|
1264
|
-
int PMPI_Get_library_version(char *version, int *resultlen) MPICH_API_PUBLIC;
|
|
1265
|
-
int PMPI_Errhandler_create(MPI_Handler_function *function, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1266
|
-
int PMPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1267
|
-
int PMPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1268
|
-
int PMPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1269
|
-
int PMPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1270
|
-
int PMPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1271
|
-
int PMPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1272
|
-
int PMPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1273
|
-
int PMPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
1274
|
-
int PMPI_Abort(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
1275
|
-
|
|
1276
|
-
/* Note that we may need to define a @PCONTROL_LIST@ depending on whether
|
|
1277
|
-
stdargs are supported */
|
|
1278
|
-
int PMPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
1279
|
-
|
|
1280
|
-
/* MPI-3 One-Sided Communication Routines */
|
|
1281
|
-
/* MPI notification extentions */
|
|
1282
|
-
/* External Interfaces */
|
|
1283
|
-
int PMPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
1284
|
-
int PMPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
1285
|
-
int PMPI_Add_error_string(int errorcode, const char *string) MPICH_API_PUBLIC;
|
|
1286
|
-
int PMPI_Comm_call_errhandler(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
1287
|
-
int PMPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
1288
|
-
MPI_Comm_delete_attr_function *comm_delete_attr_fn, int *comm_keyval,
|
|
1289
|
-
void *extra_state) MPICH_API_PUBLIC;
|
|
1290
|
-
int PMPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
1291
|
-
int PMPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
1292
|
-
int PMPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1293
|
-
int PMPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1294
|
-
int PMPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
1295
|
-
int PMPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
1296
|
-
int PMPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
1297
|
-
MPI_Grequest_cancel_function *cancel_fn, void *extra_state,
|
|
1298
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1299
|
-
int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH_API_PUBLIC;
|
|
1300
|
-
int PMPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
1301
|
-
int PMPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
1302
|
-
int PMPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
1303
|
-
int PMPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
1304
|
-
MPI_Type_delete_attr_function *type_delete_attr_fn,
|
|
1305
|
-
int *type_keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1306
|
-
int PMPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
1307
|
-
int PMPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
1308
|
-
int PMPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1309
|
-
int PMPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1310
|
-
int PMPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
1311
|
-
int PMPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
1312
|
-
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
1313
|
-
void *extra_state) MPICH_API_PUBLIC;
|
|
1314
|
-
int PMPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
1315
|
-
int PMPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
1316
|
-
int PMPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1317
|
-
int PMPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1318
|
-
|
|
1319
|
-
int PMPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1320
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1321
|
-
int PMPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1322
|
-
int PMPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1323
|
-
int PMPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn,
|
|
1324
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1325
|
-
int PMPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1326
|
-
int PMPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1327
|
-
int PMPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
1328
|
-
int PMPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1329
|
-
int PMPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
1330
|
-
int PMPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
1331
|
-
int PMPI_Info_free(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1332
|
-
int PMPI_Info_get(MPI_Info info, const char *key, int valuelen, char *value, int *flag) MPICH_API_PUBLIC;
|
|
1333
|
-
int PMPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
1334
|
-
int PMPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
1335
|
-
int PMPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag) MPICH_API_PUBLIC;
|
|
1336
|
-
int PMPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
1337
|
-
int PMPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1338
1073
|
int PMPI_Status_c2f(const MPI_Status *c_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
1339
1074
|
int PMPI_Status_f2c(const MPI_Fint *f_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
1340
|
-
int PMPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
1341
|
-
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1342
|
-
int PMPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1343
|
-
int PMPI_Win_set_errhandler(MPI_Win win, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1344
1075
|
|
|
1345
1076
|
/* Fortran 90-related functions. These routines are available only if
|
|
1346
1077
|
Fortran 90 support is enabled
|
|
@@ -1349,66 +1080,46 @@ int PMPI_Type_create_f90_integer(int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
|
1349
1080
|
int PMPI_Type_create_f90_real(int p, int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1350
1081
|
int PMPI_Type_create_f90_complex(int p, int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1351
1082
|
|
|
1352
|
-
int PMPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
1353
|
-
const int sourceweights[], int outdegree,
|
|
1354
|
-
const int destinations[], const int destweights[],
|
|
1355
|
-
MPI_Info info, int reorder, MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
1356
|
-
int PMPI_Dist_graph_create(MPI_Comm comm_old, int n, const int sources[], const int degrees[],
|
|
1357
|
-
const int destinations[], const int weights[], MPI_Info info,
|
|
1358
|
-
int reorder, MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
1359
|
-
int PMPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree, int *weighted) MPICH_API_PUBLIC;
|
|
1360
|
-
int PMPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
1361
|
-
int maxoutdegree, int destinations[], int destweights[]) MPICH_API_PUBLIC;
|
|
1362
|
-
/* MPI_Aint addressing arithmetic */
|
|
1363
|
-
MPI_Aint PMPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
1364
|
-
MPI_Aint PMPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
1365
|
-
|
|
1366
1083
|
/* MPI_T interface */
|
|
1367
1084
|
/* The MPI_T routines are available only in C bindings - tell tools that they
|
|
1368
1085
|
can skip these prototypes */
|
|
1369
|
-
|
|
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;
|
|
1086
|
+
/* Begin Skip Prototypes */
|
|
1407
1087
|
/* End Skip Prototypes */
|
|
1088
|
+
|
|
1408
1089
|
#endif /* MPI_BUILD_PROFILING */
|
|
1409
1090
|
|
|
1410
1091
|
|
|
1411
1092
|
#ifndef MPICH_SUPPRESS_PROTOTYPES
|
|
1093
|
+
int MPI_Attr_delete(MPI_Comm comm, int keyval) MPICH_API_PUBLIC;
|
|
1094
|
+
int MPI_Attr_get(MPI_Comm comm, int keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1095
|
+
int MPI_Attr_put(MPI_Comm comm, int keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1096
|
+
int MPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
1097
|
+
MPI_Comm_delete_attr_function *comm_delete_attr_fn, int *comm_keyval,
|
|
1098
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
1099
|
+
int MPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
1100
|
+
int MPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
1101
|
+
int MPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag)
|
|
1102
|
+
MPICH_API_PUBLIC;
|
|
1103
|
+
int MPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1104
|
+
int MPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn, int *keyval,
|
|
1105
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
1106
|
+
int MPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
1107
|
+
int MPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
1108
|
+
MPI_Type_delete_attr_function *type_delete_attr_fn, int *type_keyval,
|
|
1109
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
1110
|
+
int MPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
1111
|
+
int MPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
1112
|
+
int MPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag)
|
|
1113
|
+
MPICH_API_PUBLIC;
|
|
1114
|
+
int MPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val)
|
|
1115
|
+
MPICH_API_PUBLIC;
|
|
1116
|
+
int MPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
1117
|
+
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
1118
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
1119
|
+
int MPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
1120
|
+
int MPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
1121
|
+
int MPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1122
|
+
int MPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1412
1123
|
int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1413
1124
|
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1414
1125
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
@@ -1737,6 +1448,8 @@ int MPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint
|
|
|
1737
1448
|
MPICH_API_PUBLIC;
|
|
1738
1449
|
int MPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
1739
1450
|
MPICH_API_PUBLIC;
|
|
1451
|
+
int MPI_Type_get_value_index(MPI_Datatype value_type, MPI_Datatype index_type,
|
|
1452
|
+
MPI_Datatype *pair_type) MPICH_API_PUBLIC;
|
|
1740
1453
|
int MPI_Type_indexed(int count, const int array_of_blocklengths[],
|
|
1741
1454
|
const int array_of_displacements[], MPI_Datatype oldtype,
|
|
1742
1455
|
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
@@ -1761,6 +1474,34 @@ int MPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype o
|
|
|
1761
1474
|
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1762
1475
|
int MPI_Type_struct(int count, int array_of_blocklengths[], MPI_Aint array_of_displacements[],
|
|
1763
1476
|
MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1477
|
+
int MPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
1478
|
+
int MPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
1479
|
+
int MPI_Add_error_string(int errorcode, const char *string) MPICH_API_PUBLIC;
|
|
1480
|
+
int MPI_Comm_call_errhandler(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
1481
|
+
int MPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1482
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1483
|
+
int MPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1484
|
+
int MPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1485
|
+
int MPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1486
|
+
int MPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1487
|
+
int MPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1488
|
+
int MPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
1489
|
+
int MPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn,
|
|
1490
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1491
|
+
int MPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1492
|
+
int MPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1493
|
+
int MPI_Remove_error_class(int errorclass) MPICH_API_PUBLIC;
|
|
1494
|
+
int MPI_Remove_error_code(int errorcode) MPICH_API_PUBLIC;
|
|
1495
|
+
int MPI_Remove_error_string(int errorcode) MPICH_API_PUBLIC;
|
|
1496
|
+
int MPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
1497
|
+
int MPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
1498
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1499
|
+
int MPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1500
|
+
int MPI_Win_set_errhandler(MPI_Win win, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1501
|
+
int MPI_Errhandler_create(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1502
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1503
|
+
int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1504
|
+
int MPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1764
1505
|
int MPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
1765
1506
|
int MPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
1766
1507
|
int MPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
@@ -1802,6 +1543,34 @@ int MPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
|
1802
1543
|
int MPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1803
1544
|
int ranks2[]) MPICH_API_PUBLIC;
|
|
1804
1545
|
int MPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1546
|
+
int MPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1547
|
+
int MPI_Info_create_env(int argc, char *argv[], MPI_Info *info) MPICH_API_PUBLIC;
|
|
1548
|
+
int MPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
1549
|
+
int MPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
1550
|
+
int MPI_Info_free(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1551
|
+
int MPI_Info_get(MPI_Info info, const char *key, int valuelen, char *value, int *flag)
|
|
1552
|
+
MPICH_API_PUBLIC;
|
|
1553
|
+
int MPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
1554
|
+
int MPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
1555
|
+
int MPI_Info_get_string(MPI_Info info, const char *key, int *buflen, char *value, int *flag)
|
|
1556
|
+
MPICH_API_PUBLIC;
|
|
1557
|
+
int MPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag)
|
|
1558
|
+
MPICH_API_PUBLIC;
|
|
1559
|
+
int MPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
1560
|
+
int MPI_Abort(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
1561
|
+
int MPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1562
|
+
int MPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
1563
|
+
int MPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1564
|
+
int MPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH_API_PUBLIC;
|
|
1565
|
+
int MPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
1566
|
+
int MPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
1567
|
+
int MPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
1568
|
+
MPI_Aint MPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
1569
|
+
MPI_Aint MPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
1570
|
+
int MPI_Get_library_version(char *version, int *resultlen) MPICH_API_PUBLIC;
|
|
1571
|
+
int MPI_Get_processor_name(char *name, int *resultlen) MPICH_API_PUBLIC;
|
|
1572
|
+
int MPI_Get_version(int *version, int *subversion) MPICH_API_PUBLIC;
|
|
1573
|
+
int MPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
1805
1574
|
int MPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
1806
1575
|
int MPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1807
1576
|
int MPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
@@ -1823,6 +1592,12 @@ int MPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest,
|
|
|
1823
1592
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1824
1593
|
int MPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
1825
1594
|
int MPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1595
|
+
int MPI_Buffer_flush(void) MPICH_API_PUBLIC;
|
|
1596
|
+
int MPI_Buffer_iflush(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1597
|
+
int MPI_Comm_attach_buffer(MPI_Comm comm, void *buffer, int size) MPICH_API_PUBLIC;
|
|
1598
|
+
int MPI_Comm_detach_buffer(MPI_Comm comm, void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1599
|
+
int MPI_Comm_flush_buffer(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1600
|
+
int MPI_Comm_iflush_buffer(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1826
1601
|
int MPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1827
1602
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1828
1603
|
int MPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message,
|
|
@@ -1836,6 +1611,13 @@ int MPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int
|
|
|
1836
1611
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1837
1612
|
int MPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1838
1613
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1614
|
+
int MPI_Isendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag,
|
|
1615
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag,
|
|
1616
|
+
MPI_Comm comm, MPI_Request *request)
|
|
1617
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
1618
|
+
int MPI_Isendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest, int sendtag,
|
|
1619
|
+
int source, int recvtag, MPI_Comm comm, MPI_Request *request)
|
|
1620
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1839
1621
|
int MPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
1840
1622
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1841
1623
|
int MPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status)
|
|
@@ -1864,6 +1646,10 @@ int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int
|
|
|
1864
1646
|
int MPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest, int sendtag,
|
|
1865
1647
|
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
1866
1648
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1649
|
+
int MPI_Session_attach_buffer(MPI_Session session, void *buffer, int size) MPICH_API_PUBLIC;
|
|
1650
|
+
int MPI_Session_detach_buffer(MPI_Session session, void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1651
|
+
int MPI_Session_flush_buffer(MPI_Session session) MPICH_API_PUBLIC;
|
|
1652
|
+
int MPI_Session_iflush_buffer(MPI_Session session, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1867
1653
|
int MPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
1868
1654
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1869
1655
|
int MPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -2019,8 +1805,125 @@ int MPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port
|
|
|
2019
1805
|
MPICH_API_PUBLIC;
|
|
2020
1806
|
double MPI_Wtick(void) MPICH_API_PUBLIC;
|
|
2021
1807
|
double MPI_Wtime(void) MPICH_API_PUBLIC;
|
|
1808
|
+
int MPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int coords[]) MPICH_API_PUBLIC;
|
|
1809
|
+
int MPI_Cart_create(MPI_Comm comm_old, int ndims, const int dims[], const int periods[],
|
|
1810
|
+
int reorder, MPI_Comm *comm_cart) MPICH_API_PUBLIC;
|
|
1811
|
+
int MPI_Cart_get(MPI_Comm comm, int maxdims, int dims[], int periods[], int coords[])
|
|
1812
|
+
MPICH_API_PUBLIC;
|
|
1813
|
+
int MPI_Cart_map(MPI_Comm comm, int ndims, const int dims[], const int periods[], int *newrank)
|
|
1814
|
+
MPICH_API_PUBLIC;
|
|
1815
|
+
int MPI_Cart_rank(MPI_Comm comm, const int coords[], int *rank) MPICH_API_PUBLIC;
|
|
1816
|
+
int MPI_Cart_shift(MPI_Comm comm, int direction, int disp, int *rank_source, int *rank_dest)
|
|
1817
|
+
MPICH_API_PUBLIC;
|
|
1818
|
+
int MPI_Cart_sub(MPI_Comm comm, const int remain_dims[], MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1819
|
+
int MPI_Cartdim_get(MPI_Comm comm, int *ndims) MPICH_API_PUBLIC;
|
|
1820
|
+
int MPI_Dims_create(int nnodes, int ndims, int dims[]) MPICH_API_PUBLIC;
|
|
1821
|
+
int MPI_Dist_graph_create(MPI_Comm comm_old, int n, const int sources[], const int degrees[],
|
|
1822
|
+
const int destinations[], const int weights[], MPI_Info info, int reorder,
|
|
1823
|
+
MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
1824
|
+
int MPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
1825
|
+
const int sourceweights[], int outdegree,
|
|
1826
|
+
const int destinations[], const int destweights[], MPI_Info info,
|
|
1827
|
+
int reorder, MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
1828
|
+
int MPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
1829
|
+
int maxoutdegree, int destinations[], int destweights[])
|
|
1830
|
+
MPICH_API_PUBLIC;
|
|
1831
|
+
int MPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree, int *weighted)
|
|
1832
|
+
MPICH_API_PUBLIC;
|
|
1833
|
+
int MPI_Get_hw_resource_info(MPI_Info *hw_info) MPICH_API_PUBLIC;
|
|
1834
|
+
int MPI_Graph_create(MPI_Comm comm_old, int nnodes, const int indx[], const int edges[],
|
|
1835
|
+
int reorder, MPI_Comm *comm_graph) MPICH_API_PUBLIC;
|
|
1836
|
+
int MPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges, int indx[], int edges[])
|
|
1837
|
+
MPICH_API_PUBLIC;
|
|
1838
|
+
int MPI_Graph_map(MPI_Comm comm, int nnodes, const int indx[], const int edges[], int *newrank)
|
|
1839
|
+
MPICH_API_PUBLIC;
|
|
1840
|
+
int MPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors, int neighbors[])
|
|
1841
|
+
MPICH_API_PUBLIC;
|
|
1842
|
+
int MPI_Graph_neighbors_count(MPI_Comm comm, int rank, int *nneighbors) MPICH_API_PUBLIC;
|
|
1843
|
+
int MPI_Graphdims_get(MPI_Comm comm, int *nnodes, int *nedges) MPICH_API_PUBLIC;
|
|
1844
|
+
int MPI_Topo_test(MPI_Comm comm, int *status) MPICH_API_PUBLIC;
|
|
2022
1845
|
|
|
2023
1846
|
/* Begin Skip Prototypes */
|
|
1847
|
+
int MPI_T_category_changed(int *update_number) MPICH_API_PUBLIC;
|
|
1848
|
+
int MPI_T_category_get_categories(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1849
|
+
int MPI_T_category_get_cvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1850
|
+
int MPI_T_category_get_events(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1851
|
+
int MPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
1852
|
+
int MPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
1853
|
+
int *num_cvars, int *num_pvars, int *num_categories) MPICH_API_PUBLIC;
|
|
1854
|
+
int MPI_T_category_get_num(int *num_cat) MPICH_API_PUBLIC;
|
|
1855
|
+
int MPI_T_category_get_num_events(int cat_index, int *num_events) MPICH_API_PUBLIC;
|
|
1856
|
+
int MPI_T_category_get_pvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
1857
|
+
int MPI_T_cvar_get_index(const char *name, int *cvar_index) MPICH_API_PUBLIC;
|
|
1858
|
+
int MPI_T_cvar_get_info(int cvar_index, char *name, int *name_len, int *verbosity,
|
|
1859
|
+
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
1860
|
+
int *bind, int *scope) MPICH_API_PUBLIC;
|
|
1861
|
+
int MPI_T_cvar_get_num(int *num_cvar) MPICH_API_PUBLIC;
|
|
1862
|
+
int MPI_T_cvar_handle_alloc(int cvar_index, void *obj_handle, MPI_T_cvar_handle *handle,
|
|
1863
|
+
int *count) MPICH_API_PUBLIC;
|
|
1864
|
+
int MPI_T_cvar_handle_free(MPI_T_cvar_handle *handle) MPICH_API_PUBLIC;
|
|
1865
|
+
int MPI_T_cvar_read(MPI_T_cvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
1866
|
+
int MPI_T_cvar_write(MPI_T_cvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
1867
|
+
int MPI_T_enum_get_info(MPI_T_enum enumtype, int *num, char *name, int *name_len) MPICH_API_PUBLIC;
|
|
1868
|
+
int MPI_T_enum_get_item(MPI_T_enum enumtype, int indx, int *value, char *name, int *name_len)
|
|
1869
|
+
MPICH_API_PUBLIC;
|
|
1870
|
+
int MPI_T_event_callback_get_info(MPI_T_event_registration event_registration,
|
|
1871
|
+
MPI_T_cb_safety cb_safety, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1872
|
+
int MPI_T_event_callback_set_info(MPI_T_event_registration event_registration,
|
|
1873
|
+
MPI_T_cb_safety cb_safety, MPI_Info info) MPICH_API_PUBLIC;
|
|
1874
|
+
int MPI_T_event_copy(MPI_T_event_instance event_instance, void *buffer) MPICH_API_PUBLIC;
|
|
1875
|
+
int MPI_T_event_get_index(const char *name, int *event_index) MPICH_API_PUBLIC;
|
|
1876
|
+
int MPI_T_event_get_info(int event_index, char *name, int *name_len, int *verbosity,
|
|
1877
|
+
MPI_Datatype array_of_datatypes[], MPI_Aint array_of_displacements[],
|
|
1878
|
+
int *num_elements, MPI_T_enum *enumtype, MPI_Info *info, char *desc,
|
|
1879
|
+
int *desc_len, int *bind) MPICH_API_PUBLIC;
|
|
1880
|
+
int MPI_T_event_get_num(int *num_events) MPICH_API_PUBLIC;
|
|
1881
|
+
int MPI_T_event_get_source(MPI_T_event_instance event_instance, int *source_index)
|
|
1882
|
+
MPICH_API_PUBLIC;
|
|
1883
|
+
int MPI_T_event_get_timestamp(MPI_T_event_instance event_instance, MPI_Count *event_timestamp)
|
|
1884
|
+
MPICH_API_PUBLIC;
|
|
1885
|
+
int MPI_T_event_handle_alloc(int event_index, void *obj_handle, MPI_Info info,
|
|
1886
|
+
MPI_T_event_registration *event_registration) MPICH_API_PUBLIC;
|
|
1887
|
+
int MPI_T_event_handle_free(MPI_T_event_registration event_registration, void *user_data,
|
|
1888
|
+
MPI_T_event_free_cb_function free_cb_function) MPICH_API_PUBLIC;
|
|
1889
|
+
int MPI_T_event_handle_get_info(MPI_T_event_registration event_registration, MPI_Info *info_used)
|
|
1890
|
+
MPICH_API_PUBLIC;
|
|
1891
|
+
int MPI_T_event_handle_set_info(MPI_T_event_registration event_registration, MPI_Info info)
|
|
1892
|
+
MPICH_API_PUBLIC;
|
|
1893
|
+
int MPI_T_event_read(MPI_T_event_instance event_instance, int element_index, void *buffer)
|
|
1894
|
+
MPICH_API_PUBLIC;
|
|
1895
|
+
int MPI_T_event_register_callback(MPI_T_event_registration event_registration,
|
|
1896
|
+
MPI_T_cb_safety cb_safety, MPI_Info info, void *user_data,
|
|
1897
|
+
MPI_T_event_cb_function event_cb_function) MPICH_API_PUBLIC;
|
|
1898
|
+
int MPI_T_event_set_dropped_handler(MPI_T_event_registration event_registration,
|
|
1899
|
+
MPI_T_event_dropped_cb_function dropped_cb_function)
|
|
1900
|
+
MPICH_API_PUBLIC;
|
|
1901
|
+
int MPI_T_finalize(void) MPICH_API_PUBLIC;
|
|
1902
|
+
int MPI_T_init_thread(int required, int *provided) MPICH_API_PUBLIC;
|
|
1903
|
+
int MPI_T_pvar_get_index(const char *name, int var_class, int *pvar_index) MPICH_API_PUBLIC;
|
|
1904
|
+
int MPI_T_pvar_get_info(int pvar_index, char *name, int *name_len, int *verbosity, int *var_class,
|
|
1905
|
+
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
1906
|
+
int *bind, int *readonly, int *continuous, int *atomic) MPICH_API_PUBLIC;
|
|
1907
|
+
int MPI_T_pvar_get_num(int *num_pvar) MPICH_API_PUBLIC;
|
|
1908
|
+
int MPI_T_pvar_handle_alloc(MPI_T_pvar_session session, int pvar_index, void *obj_handle,
|
|
1909
|
+
MPI_T_pvar_handle *handle, int *count) MPICH_API_PUBLIC;
|
|
1910
|
+
int MPI_T_pvar_handle_free(MPI_T_pvar_session session, MPI_T_pvar_handle *handle) MPICH_API_PUBLIC;
|
|
1911
|
+
int MPI_T_pvar_read(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf)
|
|
1912
|
+
MPICH_API_PUBLIC;
|
|
1913
|
+
int MPI_T_pvar_readreset(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf)
|
|
1914
|
+
MPICH_API_PUBLIC;
|
|
1915
|
+
int MPI_T_pvar_reset(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1916
|
+
int MPI_T_pvar_session_create(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
1917
|
+
int MPI_T_pvar_session_free(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
1918
|
+
int MPI_T_pvar_start(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1919
|
+
int MPI_T_pvar_stop(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
1920
|
+
int MPI_T_pvar_write(MPI_T_pvar_session session, MPI_T_pvar_handle handle, const void *buf)
|
|
1921
|
+
MPICH_API_PUBLIC;
|
|
1922
|
+
int MPI_T_source_get_info(int source_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
1923
|
+
MPI_T_source_order *ordering, MPI_Count *ticks_per_second,
|
|
1924
|
+
MPI_Count *max_ticks, MPI_Info *info) MPICH_API_PUBLIC;
|
|
1925
|
+
int MPI_T_source_get_num(int *num_sources) MPICH_API_PUBLIC;
|
|
1926
|
+
int MPI_T_source_get_timestamp(int source_index, MPI_Count *timestamp) MPICH_API_PUBLIC;
|
|
2024
1927
|
int MPIX_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
2025
1928
|
MPI_Grequest_cancel_function *cancel_fn,
|
|
2026
1929
|
MPIX_Grequest_poll_function *poll_fn, MPIX_Grequest_wait_function *wait_fn,
|
|
@@ -2361,6 +2264,8 @@ int MPI_Bsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, in
|
|
|
2361
2264
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2362
2265
|
int MPI_Buffer_attach_c(void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
2363
2266
|
int MPI_Buffer_detach_c(void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2267
|
+
int MPI_Comm_attach_buffer_c(MPI_Comm comm, void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
2268
|
+
int MPI_Comm_detach_buffer_c(MPI_Comm comm, void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2364
2269
|
int MPI_Ibsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2365
2270
|
MPI_Comm comm, MPI_Request *request)
|
|
2366
2271
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
@@ -2375,6 +2280,14 @@ int MPI_Irsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int de
|
|
|
2375
2280
|
int MPI_Isend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2376
2281
|
MPI_Comm comm, MPI_Request *request)
|
|
2377
2282
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2283
|
+
int MPI_Isendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, int dest,
|
|
2284
|
+
int sendtag, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2285
|
+
int source, int recvtag, MPI_Comm comm, MPI_Request *request)
|
|
2286
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
2287
|
+
int MPI_Isendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest,
|
|
2288
|
+
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
2289
|
+
MPI_Request *request)
|
|
2290
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2378
2291
|
int MPI_Issend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2379
2292
|
MPI_Comm comm, MPI_Request *request)
|
|
2380
2293
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
@@ -2403,6 +2316,10 @@ int MPI_Sendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendty
|
|
|
2403
2316
|
int MPI_Sendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int sendtag,
|
|
2404
2317
|
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2405
2318
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2319
|
+
int MPI_Session_attach_buffer_c(MPI_Session session, void *buffer, MPI_Count size)
|
|
2320
|
+
MPICH_API_PUBLIC;
|
|
2321
|
+
int MPI_Session_detach_buffer_c(MPI_Session session, void *buffer_addr, MPI_Count *size)
|
|
2322
|
+
MPICH_API_PUBLIC;
|
|
2406
2323
|
int MPI_Ssend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2407
2324
|
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2408
2325
|
int MPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -2456,6 +2373,37 @@ int MPI_Win_shared_query_c(MPI_Win win, int rank, MPI_Aint *size, MPI_Aint *disp
|
|
|
2456
2373
|
#endif /* MPICH_SUPPRESS_PROTOTYPES */
|
|
2457
2374
|
#if !defined(MPI_BUILD_PROFILING)
|
|
2458
2375
|
/* Begin Skip Prototypes */
|
|
2376
|
+
int PMPI_Attr_delete(MPI_Comm comm, int keyval) MPICH_API_PUBLIC;
|
|
2377
|
+
int PMPI_Attr_get(MPI_Comm comm, int keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
2378
|
+
int PMPI_Attr_put(MPI_Comm comm, int keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
2379
|
+
int PMPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
2380
|
+
MPI_Comm_delete_attr_function *comm_delete_attr_fn, int *comm_keyval,
|
|
2381
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
2382
|
+
int PMPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
2383
|
+
int PMPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
2384
|
+
int PMPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag)
|
|
2385
|
+
MPICH_API_PUBLIC;
|
|
2386
|
+
int PMPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
2387
|
+
int PMPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn, int *keyval,
|
|
2388
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
2389
|
+
int PMPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
2390
|
+
int PMPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
2391
|
+
MPI_Type_delete_attr_function *type_delete_attr_fn, int *type_keyval,
|
|
2392
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
2393
|
+
int PMPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
2394
|
+
int PMPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
2395
|
+
int PMPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag)
|
|
2396
|
+
MPICH_API_PUBLIC;
|
|
2397
|
+
int PMPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val)
|
|
2398
|
+
MPICH_API_PUBLIC;
|
|
2399
|
+
int PMPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
2400
|
+
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
2401
|
+
void *extra_state) MPICH_API_PUBLIC;
|
|
2402
|
+
int PMPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
2403
|
+
int PMPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
2404
|
+
int PMPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag)
|
|
2405
|
+
MPICH_API_PUBLIC;
|
|
2406
|
+
int PMPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
2459
2407
|
int PMPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2460
2408
|
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2461
2409
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
@@ -3091,6 +3039,8 @@ int PMPI_Type_get_true_extent_c(MPI_Datatype datatype, MPI_Count *true_lb, MPI_C
|
|
|
3091
3039
|
MPICH_API_PUBLIC;
|
|
3092
3040
|
int PMPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
3093
3041
|
MPICH_API_PUBLIC;
|
|
3042
|
+
int PMPI_Type_get_value_index(MPI_Datatype value_type, MPI_Datatype index_type,
|
|
3043
|
+
MPI_Datatype *pair_type) MPICH_API_PUBLIC;
|
|
3094
3044
|
int PMPI_Type_indexed(int count, const int array_of_blocklengths[],
|
|
3095
3045
|
const int array_of_displacements[], MPI_Datatype oldtype,
|
|
3096
3046
|
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
@@ -3126,6 +3076,34 @@ int PMPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype
|
|
|
3126
3076
|
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3127
3077
|
int PMPI_Type_struct(int count, int array_of_blocklengths[], MPI_Aint array_of_displacements[],
|
|
3128
3078
|
MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
3079
|
+
int PMPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
3080
|
+
int PMPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
3081
|
+
int PMPI_Add_error_string(int errorcode, const char *string) MPICH_API_PUBLIC;
|
|
3082
|
+
int PMPI_Comm_call_errhandler(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
3083
|
+
int PMPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
3084
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3085
|
+
int PMPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3086
|
+
int PMPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
3087
|
+
int PMPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3088
|
+
int PMPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
3089
|
+
int PMPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
3090
|
+
int PMPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
3091
|
+
int PMPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn,
|
|
3092
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3093
|
+
int PMPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3094
|
+
int PMPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
3095
|
+
int PMPI_Remove_error_class(int errorclass) MPICH_API_PUBLIC;
|
|
3096
|
+
int PMPI_Remove_error_code(int errorcode) MPICH_API_PUBLIC;
|
|
3097
|
+
int PMPI_Remove_error_string(int errorcode) MPICH_API_PUBLIC;
|
|
3098
|
+
int PMPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
3099
|
+
int PMPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
3100
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3101
|
+
int PMPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3102
|
+
int PMPI_Win_set_errhandler(MPI_Win win, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
3103
|
+
int PMPI_Errhandler_create(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
3104
|
+
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3105
|
+
int PMPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
3106
|
+
int PMPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
3129
3107
|
int PMPIX_GPU_query_support(int gpu_type, int *is_supported) MPICH_API_PUBLIC;
|
|
3130
3108
|
int PMPIX_Query_cuda_support(void) MPICH_API_PUBLIC;
|
|
3131
3109
|
int PMPIX_Query_ze_support(void) MPICH_API_PUBLIC;
|
|
@@ -3176,6 +3154,117 @@ int PMPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
|
3176
3154
|
int PMPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
3177
3155
|
int ranks2[]) MPICH_API_PUBLIC;
|
|
3178
3156
|
int PMPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
3157
|
+
int PMPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
3158
|
+
int PMPI_Info_create_env(int argc, char *argv[], MPI_Info *info) MPICH_API_PUBLIC;
|
|
3159
|
+
int PMPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
3160
|
+
int PMPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
3161
|
+
int PMPI_Info_free(MPI_Info *info) MPICH_API_PUBLIC;
|
|
3162
|
+
int PMPI_Info_get(MPI_Info info, const char *key, int valuelen, char *value, int *flag)
|
|
3163
|
+
MPICH_API_PUBLIC;
|
|
3164
|
+
int PMPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
3165
|
+
int PMPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
3166
|
+
int PMPI_Info_get_string(MPI_Info info, const char *key, int *buflen, char *value, int *flag)
|
|
3167
|
+
MPICH_API_PUBLIC;
|
|
3168
|
+
int PMPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag)
|
|
3169
|
+
MPICH_API_PUBLIC;
|
|
3170
|
+
int PMPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
3171
|
+
int PMPI_Abort(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
3172
|
+
int PMPI_Finalize(void) MPICH_API_PUBLIC;
|
|
3173
|
+
int PMPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
3174
|
+
int PMPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
3175
|
+
int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH_API_PUBLIC;
|
|
3176
|
+
int PMPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
3177
|
+
int PMPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
3178
|
+
int PMPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
3179
|
+
MPI_Aint PMPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
3180
|
+
MPI_Aint PMPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
3181
|
+
int PMPI_Get_library_version(char *version, int *resultlen) MPICH_API_PUBLIC;
|
|
3182
|
+
int PMPI_Get_processor_name(char *name, int *resultlen) MPICH_API_PUBLIC;
|
|
3183
|
+
int PMPI_Get_version(int *version, int *subversion) MPICH_API_PUBLIC;
|
|
3184
|
+
int PMPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
3185
|
+
int PMPI_T_category_changed(int *update_number) MPICH_API_PUBLIC;
|
|
3186
|
+
int PMPI_T_category_get_categories(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
3187
|
+
int PMPI_T_category_get_cvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
3188
|
+
int PMPI_T_category_get_events(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
3189
|
+
int PMPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
3190
|
+
int PMPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
3191
|
+
int *num_cvars, int *num_pvars, int *num_categories) MPICH_API_PUBLIC;
|
|
3192
|
+
int PMPI_T_category_get_num(int *num_cat) MPICH_API_PUBLIC;
|
|
3193
|
+
int PMPI_T_category_get_num_events(int cat_index, int *num_events) MPICH_API_PUBLIC;
|
|
3194
|
+
int PMPI_T_category_get_pvars(int cat_index, int len, int indices[]) MPICH_API_PUBLIC;
|
|
3195
|
+
int PMPI_T_cvar_get_index(const char *name, int *cvar_index) MPICH_API_PUBLIC;
|
|
3196
|
+
int PMPI_T_cvar_get_info(int cvar_index, char *name, int *name_len, int *verbosity,
|
|
3197
|
+
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
3198
|
+
int *bind, int *scope) MPICH_API_PUBLIC;
|
|
3199
|
+
int PMPI_T_cvar_get_num(int *num_cvar) MPICH_API_PUBLIC;
|
|
3200
|
+
int PMPI_T_cvar_handle_alloc(int cvar_index, void *obj_handle, MPI_T_cvar_handle *handle,
|
|
3201
|
+
int *count) MPICH_API_PUBLIC;
|
|
3202
|
+
int PMPI_T_cvar_handle_free(MPI_T_cvar_handle *handle) MPICH_API_PUBLIC;
|
|
3203
|
+
int PMPI_T_cvar_read(MPI_T_cvar_handle handle, void *buf) MPICH_API_PUBLIC;
|
|
3204
|
+
int PMPI_T_cvar_write(MPI_T_cvar_handle handle, const void *buf) MPICH_API_PUBLIC;
|
|
3205
|
+
int PMPI_T_enum_get_info(MPI_T_enum enumtype, int *num, char *name, int *name_len)
|
|
3206
|
+
MPICH_API_PUBLIC;
|
|
3207
|
+
int PMPI_T_enum_get_item(MPI_T_enum enumtype, int indx, int *value, char *name, int *name_len)
|
|
3208
|
+
MPICH_API_PUBLIC;
|
|
3209
|
+
int PMPI_T_event_callback_get_info(MPI_T_event_registration event_registration,
|
|
3210
|
+
MPI_T_cb_safety cb_safety, MPI_Info *info_used)
|
|
3211
|
+
MPICH_API_PUBLIC;
|
|
3212
|
+
int PMPI_T_event_callback_set_info(MPI_T_event_registration event_registration,
|
|
3213
|
+
MPI_T_cb_safety cb_safety, MPI_Info info) MPICH_API_PUBLIC;
|
|
3214
|
+
int PMPI_T_event_copy(MPI_T_event_instance event_instance, void *buffer) MPICH_API_PUBLIC;
|
|
3215
|
+
int PMPI_T_event_get_index(const char *name, int *event_index) MPICH_API_PUBLIC;
|
|
3216
|
+
int PMPI_T_event_get_info(int event_index, char *name, int *name_len, int *verbosity,
|
|
3217
|
+
MPI_Datatype array_of_datatypes[], MPI_Aint array_of_displacements[],
|
|
3218
|
+
int *num_elements, MPI_T_enum *enumtype, MPI_Info *info, char *desc,
|
|
3219
|
+
int *desc_len, int *bind) MPICH_API_PUBLIC;
|
|
3220
|
+
int PMPI_T_event_get_num(int *num_events) MPICH_API_PUBLIC;
|
|
3221
|
+
int PMPI_T_event_get_source(MPI_T_event_instance event_instance, int *source_index)
|
|
3222
|
+
MPICH_API_PUBLIC;
|
|
3223
|
+
int PMPI_T_event_get_timestamp(MPI_T_event_instance event_instance, MPI_Count *event_timestamp)
|
|
3224
|
+
MPICH_API_PUBLIC;
|
|
3225
|
+
int PMPI_T_event_handle_alloc(int event_index, void *obj_handle, MPI_Info info,
|
|
3226
|
+
MPI_T_event_registration *event_registration) MPICH_API_PUBLIC;
|
|
3227
|
+
int PMPI_T_event_handle_free(MPI_T_event_registration event_registration, void *user_data,
|
|
3228
|
+
MPI_T_event_free_cb_function free_cb_function) MPICH_API_PUBLIC;
|
|
3229
|
+
int PMPI_T_event_handle_get_info(MPI_T_event_registration event_registration, MPI_Info *info_used)
|
|
3230
|
+
MPICH_API_PUBLIC;
|
|
3231
|
+
int PMPI_T_event_handle_set_info(MPI_T_event_registration event_registration, MPI_Info info)
|
|
3232
|
+
MPICH_API_PUBLIC;
|
|
3233
|
+
int PMPI_T_event_read(MPI_T_event_instance event_instance, int element_index, void *buffer)
|
|
3234
|
+
MPICH_API_PUBLIC;
|
|
3235
|
+
int PMPI_T_event_register_callback(MPI_T_event_registration event_registration,
|
|
3236
|
+
MPI_T_cb_safety cb_safety, MPI_Info info, void *user_data,
|
|
3237
|
+
MPI_T_event_cb_function event_cb_function) MPICH_API_PUBLIC;
|
|
3238
|
+
int PMPI_T_event_set_dropped_handler(MPI_T_event_registration event_registration,
|
|
3239
|
+
MPI_T_event_dropped_cb_function dropped_cb_function)
|
|
3240
|
+
MPICH_API_PUBLIC;
|
|
3241
|
+
int PMPI_T_finalize(void) MPICH_API_PUBLIC;
|
|
3242
|
+
int PMPI_T_init_thread(int required, int *provided) MPICH_API_PUBLIC;
|
|
3243
|
+
int PMPI_T_pvar_get_index(const char *name, int var_class, int *pvar_index) MPICH_API_PUBLIC;
|
|
3244
|
+
int PMPI_T_pvar_get_info(int pvar_index, char *name, int *name_len, int *verbosity, int *var_class,
|
|
3245
|
+
MPI_Datatype *datatype, MPI_T_enum *enumtype, char *desc, int *desc_len,
|
|
3246
|
+
int *bind, int *readonly, int *continuous, int *atomic) MPICH_API_PUBLIC;
|
|
3247
|
+
int PMPI_T_pvar_get_num(int *num_pvar) MPICH_API_PUBLIC;
|
|
3248
|
+
int PMPI_T_pvar_handle_alloc(MPI_T_pvar_session session, int pvar_index, void *obj_handle,
|
|
3249
|
+
MPI_T_pvar_handle *handle, int *count) MPICH_API_PUBLIC;
|
|
3250
|
+
int PMPI_T_pvar_handle_free(MPI_T_pvar_session session, MPI_T_pvar_handle *handle)
|
|
3251
|
+
MPICH_API_PUBLIC;
|
|
3252
|
+
int PMPI_T_pvar_read(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf)
|
|
3253
|
+
MPICH_API_PUBLIC;
|
|
3254
|
+
int PMPI_T_pvar_readreset(MPI_T_pvar_session session, MPI_T_pvar_handle handle, void *buf)
|
|
3255
|
+
MPICH_API_PUBLIC;
|
|
3256
|
+
int PMPI_T_pvar_reset(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
3257
|
+
int PMPI_T_pvar_session_create(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
3258
|
+
int PMPI_T_pvar_session_free(MPI_T_pvar_session *session) MPICH_API_PUBLIC;
|
|
3259
|
+
int PMPI_T_pvar_start(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
3260
|
+
int PMPI_T_pvar_stop(MPI_T_pvar_session session, MPI_T_pvar_handle handle) MPICH_API_PUBLIC;
|
|
3261
|
+
int PMPI_T_pvar_write(MPI_T_pvar_session session, MPI_T_pvar_handle handle, const void *buf)
|
|
3262
|
+
MPICH_API_PUBLIC;
|
|
3263
|
+
int PMPI_T_source_get_info(int source_index, char *name, int *name_len, char *desc, int *desc_len,
|
|
3264
|
+
MPI_T_source_order *ordering, MPI_Count *ticks_per_second,
|
|
3265
|
+
MPI_Count *max_ticks, MPI_Info *info) MPICH_API_PUBLIC;
|
|
3266
|
+
int PMPI_T_source_get_num(int *num_sources) MPICH_API_PUBLIC;
|
|
3267
|
+
int PMPI_T_source_get_timestamp(int source_index, MPI_Count *timestamp) MPICH_API_PUBLIC;
|
|
3179
3268
|
int PMPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
3180
3269
|
int PMPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
3181
3270
|
int PMPI_Op_create_c(MPI_User_function_c *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
@@ -3205,6 +3294,14 @@ int PMPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
|
3205
3294
|
int PMPI_Buffer_attach_c(void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
3206
3295
|
int PMPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
3207
3296
|
int PMPI_Buffer_detach_c(void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
3297
|
+
int PMPI_Buffer_flush(void) MPICH_API_PUBLIC;
|
|
3298
|
+
int PMPI_Buffer_iflush(MPI_Request *request) MPICH_API_PUBLIC;
|
|
3299
|
+
int PMPI_Comm_attach_buffer(MPI_Comm comm, void *buffer, int size) MPICH_API_PUBLIC;
|
|
3300
|
+
int PMPI_Comm_attach_buffer_c(MPI_Comm comm, void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
3301
|
+
int PMPI_Comm_detach_buffer(MPI_Comm comm, void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
3302
|
+
int PMPI_Comm_detach_buffer_c(MPI_Comm comm, void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
3303
|
+
int PMPI_Comm_flush_buffer(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
3304
|
+
int PMPI_Comm_iflush_buffer(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
3208
3305
|
int PMPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
3209
3306
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3210
3307
|
int PMPI_Ibsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -3233,6 +3330,21 @@ int PMPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int
|
|
|
3233
3330
|
int PMPI_Isend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3234
3331
|
MPI_Comm comm, MPI_Request *request)
|
|
3235
3332
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3333
|
+
int PMPI_Isendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag,
|
|
3334
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag,
|
|
3335
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3336
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
3337
|
+
int PMPI_Isendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, int dest,
|
|
3338
|
+
int sendtag, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
3339
|
+
int source, int recvtag, MPI_Comm comm, MPI_Request *request)
|
|
3340
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
3341
|
+
int PMPI_Isendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest, int sendtag,
|
|
3342
|
+
int source, int recvtag, MPI_Comm comm, MPI_Request *request)
|
|
3343
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3344
|
+
int PMPI_Isendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest,
|
|
3345
|
+
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
3346
|
+
MPI_Request *request)
|
|
3347
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3236
3348
|
int PMPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
3237
3349
|
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3238
3350
|
int PMPI_Issend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -3290,6 +3402,14 @@ int PMPI_Sendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, i
|
|
|
3290
3402
|
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
3291
3403
|
MPI_Status *status)
|
|
3292
3404
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3405
|
+
int PMPI_Session_attach_buffer(MPI_Session session, void *buffer, int size) MPICH_API_PUBLIC;
|
|
3406
|
+
int PMPI_Session_attach_buffer_c(MPI_Session session, void *buffer, MPI_Count size)
|
|
3407
|
+
MPICH_API_PUBLIC;
|
|
3408
|
+
int PMPI_Session_detach_buffer(MPI_Session session, void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
3409
|
+
int PMPI_Session_detach_buffer_c(MPI_Session session, void *buffer_addr, MPI_Count *size)
|
|
3410
|
+
MPICH_API_PUBLIC;
|
|
3411
|
+
int PMPI_Session_flush_buffer(MPI_Session session) MPICH_API_PUBLIC;
|
|
3412
|
+
int PMPI_Session_iflush_buffer(MPI_Session session, MPI_Request *request) MPICH_API_PUBLIC;
|
|
3293
3413
|
int PMPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
3294
3414
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3295
3415
|
int PMPI_Ssend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
@@ -3508,6 +3628,44 @@ int PMPI_Unpublish_name(const char *service_name, MPI_Info info, const char *por
|
|
|
3508
3628
|
MPICH_API_PUBLIC;
|
|
3509
3629
|
double PMPI_Wtick(void) MPICH_API_PUBLIC;
|
|
3510
3630
|
double PMPI_Wtime(void) MPICH_API_PUBLIC;
|
|
3631
|
+
int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int coords[]) MPICH_API_PUBLIC;
|
|
3632
|
+
int PMPI_Cart_create(MPI_Comm comm_old, int ndims, const int dims[], const int periods[],
|
|
3633
|
+
int reorder, MPI_Comm *comm_cart) MPICH_API_PUBLIC;
|
|
3634
|
+
int PMPI_Cart_get(MPI_Comm comm, int maxdims, int dims[], int periods[], int coords[])
|
|
3635
|
+
MPICH_API_PUBLIC;
|
|
3636
|
+
int PMPI_Cart_map(MPI_Comm comm, int ndims, const int dims[], const int periods[], int *newrank)
|
|
3637
|
+
MPICH_API_PUBLIC;
|
|
3638
|
+
int PMPI_Cart_rank(MPI_Comm comm, const int coords[], int *rank) MPICH_API_PUBLIC;
|
|
3639
|
+
int PMPI_Cart_shift(MPI_Comm comm, int direction, int disp, int *rank_source, int *rank_dest)
|
|
3640
|
+
MPICH_API_PUBLIC;
|
|
3641
|
+
int PMPI_Cart_sub(MPI_Comm comm, const int remain_dims[], MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
3642
|
+
int PMPI_Cartdim_get(MPI_Comm comm, int *ndims) MPICH_API_PUBLIC;
|
|
3643
|
+
int PMPI_Dims_create(int nnodes, int ndims, int dims[]) MPICH_API_PUBLIC;
|
|
3644
|
+
int PMPI_Dist_graph_create(MPI_Comm comm_old, int n, const int sources[], const int degrees[],
|
|
3645
|
+
const int destinations[], const int weights[], MPI_Info info,
|
|
3646
|
+
int reorder, MPI_Comm *comm_dist_graph) MPICH_API_PUBLIC;
|
|
3647
|
+
int PMPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
3648
|
+
const int sourceweights[], int outdegree,
|
|
3649
|
+
const int destinations[], const int destweights[],
|
|
3650
|
+
MPI_Info info, int reorder, MPI_Comm *comm_dist_graph)
|
|
3651
|
+
MPICH_API_PUBLIC;
|
|
3652
|
+
int PMPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
3653
|
+
int maxoutdegree, int destinations[], int destweights[])
|
|
3654
|
+
MPICH_API_PUBLIC;
|
|
3655
|
+
int PMPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree, int *weighted)
|
|
3656
|
+
MPICH_API_PUBLIC;
|
|
3657
|
+
int PMPI_Get_hw_resource_info(MPI_Info *hw_info) MPICH_API_PUBLIC;
|
|
3658
|
+
int PMPI_Graph_create(MPI_Comm comm_old, int nnodes, const int indx[], const int edges[],
|
|
3659
|
+
int reorder, MPI_Comm *comm_graph) MPICH_API_PUBLIC;
|
|
3660
|
+
int PMPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges, int indx[], int edges[])
|
|
3661
|
+
MPICH_API_PUBLIC;
|
|
3662
|
+
int PMPI_Graph_map(MPI_Comm comm, int nnodes, const int indx[], const int edges[], int *newrank)
|
|
3663
|
+
MPICH_API_PUBLIC;
|
|
3664
|
+
int PMPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors, int neighbors[])
|
|
3665
|
+
MPICH_API_PUBLIC;
|
|
3666
|
+
int PMPI_Graph_neighbors_count(MPI_Comm comm, int rank, int *nneighbors) MPICH_API_PUBLIC;
|
|
3667
|
+
int PMPI_Graphdims_get(MPI_Comm comm, int *nnodes, int *nedges) MPICH_API_PUBLIC;
|
|
3668
|
+
int PMPI_Topo_test(MPI_Comm comm, int *status) MPICH_API_PUBLIC;
|
|
3511
3669
|
/* End Skip Prototypes */
|
|
3512
3670
|
#endif /* MPI_BUILD_PROFILING */
|
|
3513
3671
|
|