impi-devel 2021.9.0__py2.py3-none-win_amd64.whl → 2021.14.1__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.
- impi_devel-2021.14.1.data/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpicc.bat +91 -42
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpicl.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpicxx.bat +1 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpif77.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpif90.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpifc.bat +49 -38
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpiicc.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpiicpc.bat +2 -2
- impi_devel-2021.14.1.data/data/Library/bin/mpiicpx.bat +24 -0
- impi_devel-2021.14.1.data/data/Library/bin/mpiicx.bat +24 -0
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpiifort.bat +2 -2
- impi_devel-2021.14.1.data/data/Library/bin/mpiifx.bat +24 -0
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/include/mpi.h +2150 -1095
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/include/mpicxx.h +2705 -2705
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/include/mpio.h +149 -0
- impi_devel-2021.14.1.data/data/Library/lib/impi.lib +0 -0
- impi_devel-2021.14.1.data/data/share/doc/mpi/licensing/license.txt +72 -0
- impi_devel-2021.14.1.data/data/share/doc/mpi/licensing/third-party-programs.txt +1476 -0
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/METADATA +30 -30
- impi_devel-2021.14.1.dist-info/RECORD +24 -0
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/WHEEL +1 -1
- impi_devel-2021.9.0.data/data/Library/bin/debug/impi.dll +0 -0
- impi_devel-2021.9.0.data/data/Library/bin/debug/impi.pdb +0 -0
- impi_devel-2021.9.0.data/data/Library/bin/release/impi.pdb +0 -0
- impi_devel-2021.9.0.data/data/Library/lib/impi.lib +0 -0
- impi_devel-2021.9.0.dist-info/RECORD +0 -21
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
#define MPICH_API_PUBLIC
|
|
27
27
|
#endif
|
|
28
28
|
|
|
29
|
+
/* No sycl-specific defs */
|
|
30
|
+
|
|
29
31
|
/* Keep C++ compilers from getting confused */
|
|
30
32
|
#if defined(__cplusplus)
|
|
31
33
|
extern "C" {
|
|
@@ -259,6 +261,7 @@ static const MPI_Datatype mpich_mpi_uint64_t MPICH_ATTR_TYPE_TAG_STDINT(uint64_t
|
|
|
259
261
|
#define MPI_C_LONG_DOUBLE_COMPLEX ((MPI_Datatype)0x4c001042)
|
|
260
262
|
/* other extension types */
|
|
261
263
|
#define MPIX_C_FLOAT16 ((MPI_Datatype)MPI_DATATYPE_NULL)
|
|
264
|
+
#define MPIX_C_BF16 ((MPI_Datatype)MPI_DATATYPE_NULL)
|
|
262
265
|
|
|
263
266
|
#ifdef MPICH_DEFINE_ATTR_TYPE_TYPES
|
|
264
267
|
static const MPI_Datatype mpich_mpi_c_bool MPICH_ATTR_TYPE_TAG_C99(_Bool) = MPI_C_BOOL;
|
|
@@ -298,6 +301,10 @@ typedef int MPI_Group;
|
|
|
298
301
|
typedef int MPI_Win;
|
|
299
302
|
#define MPI_WIN_NULL ((MPI_Win)0x20000000)
|
|
300
303
|
|
|
304
|
+
/* for session */
|
|
305
|
+
typedef int MPI_Session;
|
|
306
|
+
#define MPI_SESSION_NULL ((MPI_Session)0x38000000)
|
|
307
|
+
|
|
301
308
|
/* File and IO */
|
|
302
309
|
/* This define lets ROMIO know that MPI_File has been defined */
|
|
303
310
|
#define MPI_FILE_DEFINED
|
|
@@ -363,6 +370,8 @@ static const MPI_Datatype mpich_mpi_datatype_null MPICH_ATTR_TYPE_TAG_MUST_BE_NU
|
|
|
363
370
|
#define MPI_MAX_ERROR_STRING 512
|
|
364
371
|
#define MPI_MAX_PORT_NAME 256
|
|
365
372
|
#define MPI_MAX_OBJECT_NAME 128
|
|
373
|
+
#define MPI_MAX_STRINGTAG_LEN 256
|
|
374
|
+
#define MPI_MAX_PSET_NAME_LEN 256
|
|
366
375
|
|
|
367
376
|
/* Pre-defined constants */
|
|
368
377
|
#define MPI_UNDEFINED (-32766)
|
|
@@ -426,11 +435,12 @@ typedef int (MPI_Win_delete_attr_function)(MPI_Win, int, void *, void *);
|
|
|
426
435
|
typedef void (MPI_Comm_errhandler_function)(MPI_Comm *, int *, ...);
|
|
427
436
|
typedef void (MPI_File_errhandler_function)(MPI_File *, int *, ...);
|
|
428
437
|
typedef void (MPI_Win_errhandler_function)(MPI_Win *, int *, ...);
|
|
438
|
+
typedef void (MPI_Session_errhandler_function)(MPI_Session *, int *, ...);
|
|
429
439
|
/* names that were added in MPI-2.0 and deprecated in MPI-2.2 */
|
|
430
440
|
typedef MPI_Comm_errhandler_function MPI_Comm_errhandler_fn;
|
|
431
441
|
typedef MPI_File_errhandler_function MPI_File_errhandler_fn;
|
|
432
442
|
typedef MPI_Win_errhandler_function MPI_Win_errhandler_fn;
|
|
433
|
-
|
|
443
|
+
typedef MPI_Session_errhandler_function MPI_Session_errhandler_fn;
|
|
434
444
|
/* Built in (0x1 in 30-31), errhandler (0x5 in bits 26-29, allkind (0
|
|
435
445
|
in 22-25), index in the low bits */
|
|
436
446
|
#define MPI_ERRORS_ARE_FATAL ((MPI_Errhandler)0x54000000)
|
|
@@ -440,6 +450,7 @@ typedef MPI_Win_errhandler_function MPI_Win_errhandler_fn;
|
|
|
440
450
|
Using the MPIR prefix preserved the MPI_ names for objects defined by
|
|
441
451
|
the standard. */
|
|
442
452
|
#define MPIR_ERRORS_THROW_EXCEPTIONS ((MPI_Errhandler)0x54000002)
|
|
453
|
+
#define MPI_ERRORS_ABORT ((MPI_Errhandler)0x54000003)
|
|
443
454
|
typedef int MPI_Errhandler;
|
|
444
455
|
|
|
445
456
|
/* Make the C names for the dup function mixed case.
|
|
@@ -466,8 +477,26 @@ typedef int MPI_Request;
|
|
|
466
477
|
/* MPI message objects for Mprobe and related functions */
|
|
467
478
|
typedef int MPI_Message;
|
|
468
479
|
|
|
480
|
+
typedef int MPIX_Grequest_class;
|
|
481
|
+
|
|
482
|
+
/* Definitions that are determined by configure. */
|
|
483
|
+
#ifdef MPI_AINT64_TYPE
|
|
484
|
+
#undef MPI_AINT64_TYPE
|
|
485
|
+
#endif
|
|
486
|
+
#if defined(USE_GCC) || defined(__GNUC__)
|
|
487
|
+
#define MPI_AINT64_TYPE long long
|
|
488
|
+
#else
|
|
489
|
+
#define MPI_AINT64_TYPE __int64
|
|
490
|
+
#endif
|
|
491
|
+
typedef MPI_AINT64_TYPE MPI_Aint;
|
|
492
|
+
#undef MPI_AINT64_TYPE
|
|
493
|
+
|
|
494
|
+
typedef int MPI_Fint;
|
|
495
|
+
typedef long long MPI_Count;
|
|
496
|
+
|
|
469
497
|
/* User combination function */
|
|
470
498
|
typedef void (MPI_User_function) ( void *, void *, int *, MPI_Datatype * );
|
|
499
|
+
typedef void (MPI_User_function_c) ( void *, void *, MPI_Count *, MPI_Datatype * );
|
|
471
500
|
|
|
472
501
|
/* MPI Attribute copy and delete functions */
|
|
473
502
|
typedef int (MPI_Copy_function) ( MPI_Comm, int, void *, void *, void *, int * );
|
|
@@ -538,8 +567,8 @@ typedef int (MPI_Delete_function) ( MPI_Comm, int, void *, void * );
|
|
|
538
567
|
* digits for REV, 1 digit for EXT and 2 digits for EXT_NUMBER. So,
|
|
539
568
|
* 2019.0.0b0 will have the numeric version 20190000100.
|
|
540
569
|
*/
|
|
541
|
-
#define I_MPI_VERSION "2021.
|
|
542
|
-
#define I_MPI_NUMVERSION
|
|
570
|
+
#define I_MPI_VERSION "2021.14.1"
|
|
571
|
+
#define I_MPI_NUMVERSION 20211401300
|
|
543
572
|
|
|
544
573
|
/* for the datatype decoders */
|
|
545
574
|
enum MPIR_Combiner_enum {
|
|
@@ -580,6 +609,7 @@ typedef int MPI_Info;
|
|
|
580
609
|
#define MPI_DISTRIBUTE_DFLT_DARG -49767
|
|
581
610
|
|
|
582
611
|
#define MPI_IN_PLACE (void *) -1
|
|
612
|
+
#define MPI_BUFFER_AUTOMATIC (void *) -2
|
|
583
613
|
|
|
584
614
|
/* asserts for one-sided communication */
|
|
585
615
|
#define MPI_MODE_NOCHECK 1024
|
|
@@ -592,22 +622,11 @@ typedef int MPI_Info;
|
|
|
592
622
|
#define MPI_COMM_TYPE_SHARED 1
|
|
593
623
|
|
|
594
624
|
/* MPICH-specific types */
|
|
595
|
-
#define
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
#ifdef MPI_AINT64_TYPE
|
|
599
|
-
#undef MPI_AINT64_TYPE
|
|
600
|
-
#endif
|
|
601
|
-
#if defined(USE_GCC) || defined(__GNUC__)
|
|
602
|
-
#define MPI_AINT64_TYPE long long
|
|
603
|
-
#else
|
|
604
|
-
#define MPI_AINT64_TYPE __int64
|
|
605
|
-
#endif
|
|
606
|
-
typedef MPI_AINT64_TYPE MPI_Aint;
|
|
607
|
-
#undef MPI_AINT64_TYPE
|
|
625
|
+
#define MPI_COMM_TYPE_HW_GUIDED 2
|
|
626
|
+
#define MPI_COMM_TYPE_HW_UNGUIDED 3
|
|
627
|
+
#define MPI_COMM_TYPE_RESOURCE_GUIDED 4
|
|
608
628
|
|
|
609
|
-
|
|
610
|
-
typedef long long MPI_Count;
|
|
629
|
+
#define MPIX_COMM_TYPE_NEIGHBORHOOD 5
|
|
611
630
|
|
|
612
631
|
#ifdef MPICH_DEFINE_ATTR_TYPE_TYPES
|
|
613
632
|
static const MPI_Datatype mpich_mpi_aint MPICH_ATTR_TYPE_TAG(MPI_Aint) = MPI_AINT;
|
|
@@ -760,6 +779,8 @@ typedef enum MPIR_T_pvar_class_t {
|
|
|
760
779
|
#define MPI_Win_f2c(win) (MPI_Win)(win)
|
|
761
780
|
#define MPI_Message_c2f(msg) ((MPI_Fint)(msg))
|
|
762
781
|
#define MPI_Message_f2c(msg) ((MPI_Message)(msg))
|
|
782
|
+
#define MPI_Session_c2f(session) (MPI_Fint)(session)
|
|
783
|
+
#define MPI_Session_f2c(session) (MPI_Session)(session)
|
|
763
784
|
|
|
764
785
|
/* PMPI versions of the handle transfer functions. See section 4.17 */
|
|
765
786
|
#define PMPI_Comm_c2f(comm) (MPI_Fint)(comm)
|
|
@@ -780,6 +801,8 @@ typedef enum MPIR_T_pvar_class_t {
|
|
|
780
801
|
#define PMPI_Win_f2c(win) (MPI_Win)(win)
|
|
781
802
|
#define PMPI_Message_c2f(msg) ((MPI_Fint)(msg))
|
|
782
803
|
#define PMPI_Message_f2c(msg) ((MPI_Message)(msg))
|
|
804
|
+
#define PMPI_Session_c2f(session) (MPI_Fint)(session)
|
|
805
|
+
#define PMPI_Session_f2c(session) (MPI_Session)(session)
|
|
783
806
|
|
|
784
807
|
#define MPI_STATUS_IGNORE (MPI_Status *)1
|
|
785
808
|
#define MPI_STATUSES_IGNORE (MPI_Status *)1
|
|
@@ -809,6 +832,12 @@ typedef struct {
|
|
|
809
832
|
MPI_Fint MPI_ERROR;
|
|
810
833
|
} MPI_F08_status;
|
|
811
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
|
+
|
|
812
841
|
extern MPIU_DLL_SPEC MPI_F08_status MPIR_F08_MPI_STATUS_IGNORE_OBJ MPICH_API_PUBLIC;
|
|
813
842
|
extern MPIU_DLL_SPEC MPI_F08_status MPIR_F08_MPI_STATUSES_IGNORE_OBJ[1] MPICH_API_PUBLIC;
|
|
814
843
|
extern MPIU_DLL_SPEC int MPIR_F08_MPI_IN_PLACE MPICH_API_PUBLIC;
|
|
@@ -918,7 +947,9 @@ typedef int (MPIX_Grequest_wait_function)(int, void **, double, MPI_Status *);
|
|
|
918
947
|
be initialized */
|
|
919
948
|
#define MPI_T_ERR_INVALID_INDEX 62 /* The index is invalid or
|
|
920
949
|
has been deleted */
|
|
921
|
-
#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. */
|
|
922
953
|
#define MPI_T_ERR_INVALID_HANDLE 64 /* The handle is invalid */
|
|
923
954
|
#define MPI_T_ERR_OUT_OF_HANDLES 65 /* No more handles available */
|
|
924
955
|
#define MPI_T_ERR_OUT_OF_SESSIONS 66 /* No more sessions available */
|
|
@@ -932,10 +963,13 @@ typedef int (MPIX_Grequest_wait_function)(int, void **, double, MPI_Status *);
|
|
|
932
963
|
#define MPI_T_ERR_INVALID_NAME 73 /* Name doesn't match */
|
|
933
964
|
#define MPI_T_ERR_INVALID 74 /* Generic error code for MPI_T added in MPI-3.1 */
|
|
934
965
|
|
|
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 */
|
|
935
969
|
|
|
936
970
|
#define MPI_ERR_LASTCODE 0x3fffffff /* Last valid error code for a
|
|
937
971
|
predefined error class */
|
|
938
|
-
#define MPICH_ERR_LAST_CLASS
|
|
972
|
+
#define MPICH_ERR_LAST_CLASS 75 /* It is also helpful to know the
|
|
939
973
|
last valid class */
|
|
940
974
|
|
|
941
975
|
#define MPICH_ERR_FIRST_MPIX 100 /* Define a gap here because sock is
|
|
@@ -962,6 +996,16 @@ typedef int (MPI_Datarep_extent_function)(MPI_Datatype datatype, MPI_Aint *,
|
|
|
962
996
|
void *);
|
|
963
997
|
#define MPI_CONVERSION_FN_NULL ((MPI_Datarep_conversion_function *)0)
|
|
964
998
|
|
|
999
|
+
typedef int (MPI_Datarep_conversion_function_c)(void *, MPI_Datatype, MPI_Count,
|
|
1000
|
+
void *, MPI_Offset, void *);
|
|
1001
|
+
#define MPI_CONVERSION_FN_NULL_C ((MPI_Datarep_conversion_function_c *)0)
|
|
1002
|
+
|
|
1003
|
+
typedef struct {
|
|
1004
|
+
void **storage_stack;
|
|
1005
|
+
} QMPI_Context;
|
|
1006
|
+
|
|
1007
|
+
#define QMPI_MAX_TOOL_NAME_LENGTH 256
|
|
1008
|
+
|
|
965
1009
|
/*
|
|
966
1010
|
For systems that may need to add additional definitions to support
|
|
967
1011
|
different declaration styles and options (e.g., different calling
|
|
@@ -976,29 +1020,6 @@ typedef int (MPI_Datarep_extent_function)(MPI_Datatype datatype, MPI_Aint *,
|
|
|
976
1020
|
#ifndef MPICH_SUPPRESS_PROTOTYPES
|
|
977
1021
|
/* We require that the C compiler support prototypes */
|
|
978
1022
|
/* Begin Prototypes */
|
|
979
|
-
int MPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
980
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
981
|
-
int MPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
982
|
-
MPI_Comm comm, MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
983
|
-
int MPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
984
|
-
int MPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
985
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
986
|
-
int MPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
987
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
988
|
-
int MPI_Rsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
989
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
990
|
-
int MPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
991
|
-
int MPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
992
|
-
int MPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
993
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
994
|
-
int MPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
995
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
996
|
-
int MPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
997
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
998
|
-
int MPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
999
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1000
|
-
int MPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1001
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1002
1023
|
int MPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1003
1024
|
int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1004
1025
|
int MPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
@@ -1012,134 +1033,10 @@ int MPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
|
1012
1033
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1013
1034
|
int MPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1014
1035
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1015
|
-
int MPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1016
|
-
int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1017
1036
|
int MPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1018
1037
|
int MPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1019
|
-
int MPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1020
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1021
|
-
int MPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1022
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1023
|
-
int MPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1024
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1025
|
-
int MPI_Rsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1026
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1027
|
-
int MPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1028
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1029
1038
|
int MPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1030
1039
|
int MPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1031
|
-
int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest,
|
|
1032
|
-
int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1033
|
-
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
1034
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
1035
|
-
int MPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest,
|
|
1036
|
-
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
1037
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1038
|
-
int MPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1039
|
-
int MPI_Type_vector(int count, int blocklength, int stride, MPI_Datatype oldtype,
|
|
1040
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1041
|
-
int MPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1042
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1043
|
-
int MPI_Type_indexed(int count, const int *array_of_blocklengths,
|
|
1044
|
-
const int *array_of_displacements, MPI_Datatype oldtype,
|
|
1045
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1046
|
-
int MPI_Type_hindexed(int count, int *array_of_blocklengths,
|
|
1047
|
-
MPI_Aint *array_of_displacements, MPI_Datatype oldtype,
|
|
1048
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1049
|
-
int MPI_Type_struct(int count, int *array_of_blocklengths,
|
|
1050
|
-
MPI_Aint *array_of_displacements,
|
|
1051
|
-
MPI_Datatype *array_of_types, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1052
|
-
int MPI_Address(void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1053
|
-
int MPI_Type_extent(MPI_Datatype datatype, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1054
|
-
int MPI_Type_size(MPI_Datatype datatype, int *size) MPICH_API_PUBLIC;
|
|
1055
|
-
int MPI_Type_lb(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1056
|
-
int MPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1057
|
-
int MPI_Type_commit(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1058
|
-
int MPI_Type_free(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1059
|
-
int MPI_Get_elements(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1060
|
-
int MPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf,
|
|
1061
|
-
int outsize, int *position, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1062
|
-
int MPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1063
|
-
MPI_Datatype datatype, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1064
|
-
int MPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1065
|
-
int MPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1066
|
-
int MPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
1067
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1068
|
-
int MPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1069
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1070
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1071
|
-
int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1072
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, int root,
|
|
1073
|
-
MPI_Comm comm)
|
|
1074
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1075
|
-
int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1076
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1077
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1078
|
-
int MPI_Scatterv(const void *sendbuf, const int *sendcounts, const int *displs,
|
|
1079
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1080
|
-
int root, MPI_Comm comm)
|
|
1081
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1082
|
-
int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1083
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1084
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1085
|
-
int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1086
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1087
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1088
|
-
int MPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1089
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1090
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1091
|
-
int MPI_Alltoallv(const void *sendbuf, const int *sendcounts, const int *sdispls,
|
|
1092
|
-
MPI_Datatype sendtype, void *recvbuf, const int *recvcounts,
|
|
1093
|
-
const int *rdispls, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1094
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1095
|
-
int MPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1096
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1097
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1098
|
-
int MPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1099
|
-
MPI_Op op, MPI_Comm comm)
|
|
1100
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1101
|
-
int MPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1102
|
-
MPI_Op op, int root, MPI_Comm comm)
|
|
1103
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1104
|
-
int MPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1105
|
-
int MPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1106
|
-
int MPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1107
|
-
MPI_Op op, MPI_Comm comm)
|
|
1108
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1109
|
-
int MPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1110
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1111
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1112
|
-
int MPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1113
|
-
MPI_Comm comm)
|
|
1114
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1115
|
-
int MPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1116
|
-
int MPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1117
|
-
int MPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1118
|
-
int ranks2[]) MPICH_API_PUBLIC;
|
|
1119
|
-
int MPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
1120
|
-
int MPI_Comm_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1121
|
-
int MPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1122
|
-
int MPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1123
|
-
int MPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1124
|
-
int MPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1125
|
-
int MPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1126
|
-
int MPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1127
|
-
int MPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1128
|
-
int MPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1129
|
-
int MPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1130
|
-
int MPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
1131
|
-
int MPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
1132
|
-
int MPI_Comm_dup(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1133
|
-
int MPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1134
|
-
int MPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1135
|
-
int MPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1136
|
-
int MPI_Comm_free(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1137
|
-
int MPI_Comm_test_inter(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1138
|
-
int MPI_Comm_remote_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1139
|
-
int MPI_Comm_remote_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1140
|
-
int MPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm,
|
|
1141
|
-
int remote_leader, int tag, MPI_Comm *newintercomm) MPICH_API_PUBLIC;
|
|
1142
|
-
int MPI_Intercomm_merge(MPI_Comm intercomm, int high, MPI_Comm *newintracomm) MPICH_API_PUBLIC;
|
|
1143
1040
|
int MPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn,
|
|
1144
1041
|
int *keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1145
1042
|
int MPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
@@ -1173,8 +1070,6 @@ int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBL
|
|
|
1173
1070
|
int MPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1174
1071
|
int MPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1175
1072
|
int MPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1176
|
-
double MPI_Wtime(void) MPICH_API_PUBLIC;
|
|
1177
|
-
double MPI_Wtick(void) MPICH_API_PUBLIC;
|
|
1178
1073
|
int MPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1179
1074
|
int MPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1180
1075
|
int MPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
@@ -1186,108 +1081,7 @@ int MPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
|
1186
1081
|
int MPI_DUP_FN(MPI_Comm oldcomm, int keyval, void *extra_state, void *attribute_val_in,
|
|
1187
1082
|
void *attribute_val_out, int *flag) MPICH_API_PUBLIC;
|
|
1188
1083
|
|
|
1189
|
-
/*
|
|
1190
|
-
int MPI_Close_port(const char *port_name) MPICH_API_PUBLIC;
|
|
1191
|
-
int MPI_Comm_accept(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1192
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1193
|
-
int MPI_Comm_connect(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1194
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1195
|
-
int MPI_Comm_disconnect(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1196
|
-
int MPI_Comm_get_parent(MPI_Comm *parent) MPICH_API_PUBLIC;
|
|
1197
|
-
int MPI_Comm_join(int fd, MPI_Comm *intercomm) MPICH_API_PUBLIC;
|
|
1198
|
-
int MPI_Comm_spawn(const char *command, char *argv[], int maxprocs, MPI_Info info, int root,
|
|
1199
|
-
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1200
|
-
int MPI_Comm_spawn_multiple(int count, char *array_of_commands[], char **array_of_argv[],
|
|
1201
|
-
const int array_of_maxprocs[], const MPI_Info array_of_info[],
|
|
1202
|
-
int root, MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1203
|
-
int MPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1204
|
-
int MPI_Open_port(MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1205
|
-
int MPI_Publish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1206
|
-
int MPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1207
|
-
int MPI_Comm_set_info(MPI_Comm comm, MPI_Info info) MPICH_API_PUBLIC;
|
|
1208
|
-
int MPI_Comm_get_info(MPI_Comm comm, MPI_Info *info) MPICH_API_PUBLIC;
|
|
1209
|
-
|
|
1210
|
-
/* One-Sided Communications */
|
|
1211
|
-
int MPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1212
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1213
|
-
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1214
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1215
|
-
int MPI_Get(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1216
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1217
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1218
|
-
int MPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1219
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1220
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1221
|
-
int MPI_Win_complete(MPI_Win win) MPICH_API_PUBLIC;
|
|
1222
|
-
int MPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1223
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1224
|
-
int MPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1225
|
-
int MPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
1226
|
-
int MPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1227
|
-
int MPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1228
|
-
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1229
|
-
int MPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1230
|
-
int MPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
1231
|
-
int MPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1232
|
-
int MPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
1233
|
-
|
|
1234
|
-
/* MPI-3 One-Sided Communication Routines */
|
|
1235
|
-
int MPI_Win_allocate(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, void *baseptr,
|
|
1236
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1237
|
-
int MPI_Win_allocate_shared(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1238
|
-
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1239
|
-
int MPI_Win_shared_query(MPI_Win win, int rank, MPI_Aint *size, int *disp_unit, void *baseptr) MPICH_API_PUBLIC;
|
|
1240
|
-
int MPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1241
|
-
int MPI_Win_attach(MPI_Win win, void *base, MPI_Aint size) MPICH_API_PUBLIC;
|
|
1242
|
-
int MPI_Win_detach(MPI_Win win, const void *base) MPICH_API_PUBLIC;
|
|
1243
|
-
int MPI_Win_get_info(MPI_Win win, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1244
|
-
int MPI_Win_set_info(MPI_Win win, MPI_Info info) MPICH_API_PUBLIC;
|
|
1245
|
-
int MPI_Get_accumulate(const void *origin_addr, int origin_count,
|
|
1246
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
1247
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
1248
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1249
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1250
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1251
|
-
int MPI_Fetch_and_op(const void *origin_addr, void *result_addr,
|
|
1252
|
-
MPI_Datatype datatype, int target_rank, MPI_Aint target_disp,
|
|
1253
|
-
MPI_Op op, MPI_Win win)
|
|
1254
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1255
|
-
int MPI_Compare_and_swap(const void *origin_addr, const void *compare_addr,
|
|
1256
|
-
void *result_addr, MPI_Datatype datatype, int target_rank,
|
|
1257
|
-
MPI_Aint target_disp, MPI_Win win)
|
|
1258
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1259
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4)
|
|
1260
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,4) MPICH_API_PUBLIC;
|
|
1261
|
-
int MPI_Rput(const void *origin_addr, int origin_count,
|
|
1262
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1263
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1264
|
-
MPI_Request *request)
|
|
1265
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1266
|
-
int MPI_Rget(void *origin_addr, int origin_count,
|
|
1267
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1268
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1269
|
-
MPI_Request *request)
|
|
1270
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1271
|
-
int MPI_Raccumulate(const void *origin_addr, int origin_count,
|
|
1272
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1273
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
1274
|
-
MPI_Request *request)
|
|
1275
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1276
|
-
int MPI_Rget_accumulate(const void *origin_addr, int origin_count,
|
|
1277
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
1278
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
1279
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
1280
|
-
MPI_Request *request)
|
|
1281
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1282
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1283
|
-
int MPI_Win_lock_all(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1284
|
-
int MPI_Win_unlock_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1285
|
-
int MPI_Win_flush(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1286
|
-
int MPI_Win_flush_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1287
|
-
int MPI_Win_flush_local(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1288
|
-
int MPI_Win_flush_local_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1289
|
-
int MPI_Win_sync(MPI_Win win) MPICH_API_PUBLIC;
|
|
1290
|
-
|
|
1084
|
+
/* MPI notification extentions */
|
|
1291
1085
|
/* External Interfaces */
|
|
1292
1086
|
int MPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
1293
1087
|
int MPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
@@ -1299,9 +1093,7 @@ int MPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
|
1299
1093
|
int MPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
1300
1094
|
int MPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
1301
1095
|
int MPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1302
|
-
int MPI_Comm_get_name(MPI_Comm comm, char *comm_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1303
1096
|
int MPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1304
|
-
int MPI_Comm_set_name(MPI_Comm comm, const char *comm_name) MPICH_API_PUBLIC;
|
|
1305
1097
|
int MPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
1306
1098
|
int MPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
1307
1099
|
int MPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
@@ -1311,23 +1103,13 @@ int MPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH_
|
|
|
1311
1103
|
int MPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
1312
1104
|
int MPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
1313
1105
|
int MPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
1314
|
-
int MPI_Status_set_elements(MPI_Status *status, MPI_Datatype datatype, int count) MPICH_API_PUBLIC;
|
|
1315
1106
|
int MPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
1316
1107
|
MPI_Type_delete_attr_function *type_delete_attr_fn,
|
|
1317
1108
|
int *type_keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1318
1109
|
int MPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
1319
|
-
int MPI_Type_dup(MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1320
1110
|
int MPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
1321
1111
|
int MPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1322
|
-
int MPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
|
|
1323
|
-
int max_datatypes, int array_of_integers[],
|
|
1324
|
-
MPI_Aint array_of_addresses[], MPI_Datatype array_of_datatypes[]) MPICH_API_PUBLIC;
|
|
1325
|
-
int MPI_Type_get_envelope(MPI_Datatype datatype, int *num_integers, int *num_addresses,
|
|
1326
|
-
int *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
1327
|
-
int MPI_Type_get_name(MPI_Datatype datatype, char *type_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1328
1112
|
int MPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1329
|
-
int MPI_Type_set_name(MPI_Datatype datatype, const char *type_name) MPICH_API_PUBLIC;
|
|
1330
|
-
int MPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1331
1113
|
int MPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
1332
1114
|
int MPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
1333
1115
|
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
@@ -1335,11 +1117,8 @@ int MPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
|
1335
1117
|
int MPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
1336
1118
|
int MPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
1337
1119
|
int MPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1338
|
-
int MPI_Win_get_name(MPI_Win win, char *win_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1339
1120
|
int MPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1340
|
-
int MPI_Win_set_name(MPI_Win win, const char *win_name) MPICH_API_PUBLIC;
|
|
1341
1121
|
|
|
1342
|
-
int MPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr) MPICH_API_PUBLIC;
|
|
1343
1122
|
int MPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1344
1123
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1345
1124
|
int MPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -1349,8 +1128,6 @@ int MPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn,
|
|
|
1349
1128
|
int MPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1350
1129
|
int MPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1351
1130
|
int MPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
1352
|
-
int MPI_Free_mem(void *base) MPICH_API_PUBLIC;
|
|
1353
|
-
int MPI_Get_address(const void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1354
1131
|
int MPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1355
1132
|
int MPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
1356
1133
|
int MPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
@@ -1360,41 +1137,9 @@ int MPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
|
1360
1137
|
int MPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
1361
1138
|
int MPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag) MPICH_API_PUBLIC;
|
|
1362
1139
|
int MPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
1363
|
-
int MPI_Pack_external(const char datarep[], const void *inbuf, int incount,
|
|
1364
|
-
MPI_Datatype datatype, void *outbuf, MPI_Aint outsize, MPI_Aint *position)
|
|
1365
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1366
|
-
int MPI_Pack_external_size(const char datarep[], int incount, MPI_Datatype datatype,
|
|
1367
|
-
MPI_Aint *size) MPICH_API_PUBLIC;
|
|
1368
1140
|
int MPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1369
1141
|
int MPI_Status_c2f(const MPI_Status *c_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
1370
1142
|
int MPI_Status_f2c(const MPI_Fint *f_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
1371
|
-
int MPI_Type_create_darray(int size, int rank, int ndims, const int array_of_gsizes[],
|
|
1372
|
-
const int array_of_distribs[], const int array_of_dargs[],
|
|
1373
|
-
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
1374
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1375
|
-
int MPI_Type_create_hindexed(int count, const int array_of_blocklengths[],
|
|
1376
|
-
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
1377
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1378
|
-
int MPI_Type_create_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1379
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1380
|
-
int MPI_Type_create_indexed_block(int count, int blocklength, const int array_of_displacements[],
|
|
1381
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1382
|
-
int MPI_Type_create_hindexed_block(int count, int blocklength,
|
|
1383
|
-
const MPI_Aint array_of_displacements[],
|
|
1384
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1385
|
-
int MPI_Type_create_resized(MPI_Datatype oldtype, MPI_Aint lb, MPI_Aint extent,
|
|
1386
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1387
|
-
int MPI_Type_create_struct(int count, const int array_of_blocklengths[],
|
|
1388
|
-
const MPI_Aint array_of_displacements[],
|
|
1389
|
-
const MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1390
|
-
int MPI_Type_create_subarray(int ndims, const int array_of_sizes[],
|
|
1391
|
-
const int array_of_subsizes[], const int array_of_starts[],
|
|
1392
|
-
int order, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1393
|
-
int MPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1394
|
-
int MPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint *true_extent) MPICH_API_PUBLIC;
|
|
1395
|
-
int MPI_Unpack_external(const char datarep[], const void *inbuf, MPI_Aint insize,
|
|
1396
|
-
MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype)
|
|
1397
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1398
1143
|
int MPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
1399
1144
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1400
1145
|
int MPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -1407,14 +1152,6 @@ int MPI_Type_create_f90_integer(int range, MPI_Datatype *newtype) MPICH_API_PUBL
|
|
|
1407
1152
|
int MPI_Type_create_f90_real(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1408
1153
|
int MPI_Type_create_f90_complex(int precision, int range, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1409
1154
|
|
|
1410
|
-
int MPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
1411
|
-
MPI_Op op)
|
|
1412
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1413
|
-
int MPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
1414
|
-
int MPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1415
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1416
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1417
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1418
1155
|
int MPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
1419
1156
|
const int sourceweights[], int outdegree,
|
|
1420
1157
|
const int destinations[], const int destweights[],
|
|
@@ -1426,140 +1163,9 @@ int MPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree,
|
|
|
1426
1163
|
int MPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
1427
1164
|
int maxoutdegree, int destinations[], int destweights[]) MPICH_API_PUBLIC;
|
|
1428
1165
|
|
|
1429
|
-
/*
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
int MPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
1433
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1434
|
-
int MPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1435
|
-
int MPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
1436
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1437
|
-
|
|
1438
|
-
/* Nonblocking collectives */
|
|
1439
|
-
int MPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1440
|
-
int MPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1441
|
-
int MPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
1442
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1443
|
-
int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1444
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1445
|
-
MPI_Request *request)
|
|
1446
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1447
|
-
int MPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1448
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
1449
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1450
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1451
|
-
int MPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1452
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
1453
|
-
MPI_Request *request)
|
|
1454
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1455
|
-
int MPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
1456
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1457
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
1458
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1459
|
-
int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1460
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1461
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1462
|
-
int MPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1463
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
1464
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1465
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1466
|
-
int MPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1467
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1468
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1469
|
-
int MPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1470
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1471
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1472
|
-
MPI_Request *request)
|
|
1473
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1474
|
-
int MPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1475
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1476
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
1477
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
1478
|
-
int MPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1479
|
-
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
1480
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1481
|
-
int MPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1482
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1483
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1484
|
-
int MPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1485
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1486
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1487
|
-
int MPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
1488
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
1489
|
-
MPI_Request *request)
|
|
1490
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1491
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1492
|
-
int MPI_Iscan(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_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1496
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
1497
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1498
|
-
|
|
1499
|
-
/* Neighborhood collectives */
|
|
1500
|
-
int MPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1501
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1502
|
-
MPI_Comm comm, MPI_Request *request)
|
|
1503
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1504
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1505
|
-
int MPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1506
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1507
|
-
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
1508
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1509
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1510
|
-
int MPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1511
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
1512
|
-
MPI_Request *request)
|
|
1513
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1514
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1515
|
-
int MPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1516
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1517
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
1518
|
-
MPI_Request *request)
|
|
1519
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1520
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1521
|
-
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[],
|
|
1522
|
-
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
1523
|
-
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
1524
|
-
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
1525
|
-
int MPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1526
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1527
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1528
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1529
|
-
int MPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1530
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
1531
|
-
MPI_Datatype recvtype, MPI_Comm comm)
|
|
1532
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1533
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1534
|
-
int MPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
1535
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1536
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1537
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1538
|
-
int MPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1539
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
1540
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
1541
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1542
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1543
|
-
int MPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
1544
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1545
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1546
|
-
|
|
1547
|
-
/* Shared memory */
|
|
1548
|
-
int MPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1549
|
-
|
|
1550
|
-
/* MPI-3 "large count" routines */
|
|
1551
|
-
int MPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count) MPICH_API_PUBLIC;
|
|
1552
|
-
int MPI_Status_set_elements_x(MPI_Status *status, MPI_Datatype datatype, MPI_Count count) MPICH_API_PUBLIC;
|
|
1553
|
-
int MPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
1554
|
-
int MPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
1555
|
-
int MPI_Type_size_x(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
1556
|
-
|
|
1557
|
-
/* Noncollective communicator creation */
|
|
1558
|
-
int MPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1559
|
-
|
|
1560
|
-
/* MPI_Aint addressing arithmetic */
|
|
1561
|
-
MPI_Aint MPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
1562
|
-
MPI_Aint MPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
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;
|
|
1563
1169
|
|
|
1564
1170
|
/* MPI_T interface */
|
|
1565
1171
|
/* The MPI_T routines are available only in C bindings - tell tools that they
|
|
@@ -1606,44 +1212,12 @@ int MPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
|
1606
1212
|
/* End Skip Prototypes */
|
|
1607
1213
|
|
|
1608
1214
|
|
|
1609
|
-
/* Non-standard but public extensions to MPI */
|
|
1610
|
-
/* Fault Tolerance Extensions */
|
|
1611
|
-
int MPIX_Comm_failure_ack(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1612
|
-
int MPIX_Comm_failure_get_acked(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
1613
|
-
int MPIX_Comm_revoke(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1614
|
-
int MPIX_Comm_shrink(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1615
|
-
int MPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
/* End Prototypes */
|
|
1619
1215
|
#endif /* MPICH_SUPPRESS_PROTOTYPES */
|
|
1620
1216
|
|
|
1621
1217
|
|
|
1622
1218
|
/* Here are the bindings of the profiling routines */
|
|
1219
|
+
/* Begin Skip Prototypes */
|
|
1623
1220
|
#if !defined(MPI_BUILD_PROFILING)
|
|
1624
|
-
int PMPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1625
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1626
|
-
int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1627
|
-
MPI_Comm comm, MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1628
|
-
int PMPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1629
|
-
int PMPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1630
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1631
|
-
int PMPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1632
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1633
|
-
int PMPI_Rsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1634
|
-
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1635
|
-
int PMPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
1636
|
-
int PMPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
1637
|
-
int PMPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1638
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1639
|
-
int PMPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1640
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1641
|
-
int PMPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1642
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1643
|
-
int PMPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1644
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1645
|
-
int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1646
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1647
1221
|
int PMPI_Wait(MPI_Request *request, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1648
1222
|
int PMPI_Test(MPI_Request *request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1649
1223
|
int PMPI_Request_free(MPI_Request *request) MPICH_API_PUBLIC;
|
|
@@ -1657,135 +1231,10 @@ int PMPI_Waitsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
|
1657
1231
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1658
1232
|
int PMPI_Testsome(int incount, MPI_Request array_of_requests[], int *outcount,
|
|
1659
1233
|
int array_of_indices[], MPI_Status array_of_statuses[]) MPICH_API_PUBLIC;
|
|
1660
|
-
int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1661
|
-
int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status) MPICH_API_PUBLIC;
|
|
1662
1234
|
int PMPI_Cancel(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1663
1235
|
int PMPI_Test_cancelled(const MPI_Status *status, int *flag) MPICH_API_PUBLIC;
|
|
1664
|
-
int PMPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1665
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1666
|
-
int PMPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1667
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1668
|
-
int PMPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1669
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1670
|
-
int PMPI_Rsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
1671
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1672
|
-
int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int source, int tag,
|
|
1673
|
-
MPI_Comm comm, MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1674
1236
|
int PMPI_Start(MPI_Request *request) MPICH_API_PUBLIC;
|
|
1675
1237
|
int PMPI_Startall(int count, MPI_Request array_of_requests[]) MPICH_API_PUBLIC;
|
|
1676
|
-
int PMPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest,
|
|
1677
|
-
int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1678
|
-
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
1679
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1680
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
1681
|
-
int PMPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest,
|
|
1682
|
-
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
1683
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1684
|
-
int PMPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1685
|
-
int PMPI_Type_vector(int count, int blocklength, int stride, MPI_Datatype oldtype,
|
|
1686
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1687
|
-
int PMPI_Type_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
1688
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1689
|
-
int PMPI_Type_indexed(int count, const int *array_of_blocklengths,
|
|
1690
|
-
const int *array_of_displacements, MPI_Datatype oldtype,
|
|
1691
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1692
|
-
int PMPI_Type_hindexed(int count, int *array_of_blocklengths,
|
|
1693
|
-
MPI_Aint *array_of_displacements, MPI_Datatype oldtype,
|
|
1694
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1695
|
-
int PMPI_Type_struct(int count, int *array_of_blocklengths,
|
|
1696
|
-
MPI_Aint *array_of_displacements,
|
|
1697
|
-
MPI_Datatype *array_of_types, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1698
|
-
int PMPI_Address(void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1699
|
-
int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
1700
|
-
int PMPI_Type_size(MPI_Datatype datatype, int *size) MPICH_API_PUBLIC;
|
|
1701
|
-
int PMPI_Type_lb(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1702
|
-
int PMPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) MPICH_API_PUBLIC;
|
|
1703
|
-
int PMPI_Type_commit(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1704
|
-
int PMPI_Type_free(MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1705
|
-
int PMPI_Get_elements(const MPI_Status *status, MPI_Datatype datatype, int *count) MPICH_API_PUBLIC;
|
|
1706
|
-
int PMPI_Pack(const void *inbuf, int incount, MPI_Datatype datatype, void *outbuf,
|
|
1707
|
-
int outsize, int *position, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1708
|
-
int PMPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf, int outcount,
|
|
1709
|
-
MPI_Datatype datatype, MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1710
|
-
int PMPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1711
|
-
int PMPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1712
|
-
int PMPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
1713
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1714
|
-
int PMPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1715
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1716
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1717
|
-
int PMPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1718
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, int root,
|
|
1719
|
-
MPI_Comm comm)
|
|
1720
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1721
|
-
int PMPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1722
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
1723
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1724
|
-
int PMPI_Scatterv(const void *sendbuf, const int *sendcounts, const int *displs,
|
|
1725
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
1726
|
-
int root, MPI_Comm comm)
|
|
1727
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
1728
|
-
int PMPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1729
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1730
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1731
|
-
int PMPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1732
|
-
const int *recvcounts, const int *displs, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1733
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
1734
|
-
int PMPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
1735
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1736
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1737
|
-
int PMPI_Alltoallv(const void *sendbuf, const int *sendcounts, const int *sdispls,
|
|
1738
|
-
MPI_Datatype sendtype, void *recvbuf, const int *recvcounts,
|
|
1739
|
-
const int *rdispls, MPI_Datatype recvtype, MPI_Comm comm)
|
|
1740
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
1741
|
-
int PMPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
1742
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
1743
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
1744
|
-
int PMPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1745
|
-
MPI_Op op, MPI_Comm comm)
|
|
1746
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1747
|
-
int PMPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1748
|
-
MPI_Op op, int root, MPI_Comm comm)
|
|
1749
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1750
|
-
int PMPI_Op_create(MPI_User_function *user_fn, int commute, MPI_Op *op) MPICH_API_PUBLIC;
|
|
1751
|
-
int PMPI_Op_free(MPI_Op *op) MPICH_API_PUBLIC;
|
|
1752
|
-
int PMPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
1753
|
-
MPI_Op op, MPI_Comm comm)
|
|
1754
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1755
|
-
int PMPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
1756
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
1757
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1758
|
-
int PMPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
1759
|
-
MPI_Comm comm)
|
|
1760
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
1761
|
-
int PMPI_Group_size(MPI_Group group, int *size) MPICH_API_PUBLIC;
|
|
1762
|
-
int PMPI_Group_rank(MPI_Group group, int *rank) MPICH_API_PUBLIC;
|
|
1763
|
-
int PMPI_Group_translate_ranks(MPI_Group group1, int n, const int ranks1[], MPI_Group group2,
|
|
1764
|
-
int ranks2[]) MPICH_API_PUBLIC;
|
|
1765
|
-
int PMPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) MPICH_API_PUBLIC;
|
|
1766
|
-
int PMPI_Comm_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1767
|
-
int PMPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1768
|
-
int PMPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1769
|
-
int PMPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1770
|
-
int PMPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1771
|
-
int PMPI_Group_excl(MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1772
|
-
int PMPI_Group_range_incl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1773
|
-
int PMPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) MPICH_API_PUBLIC;
|
|
1774
|
-
int PMPI_Group_free(MPI_Group *group) MPICH_API_PUBLIC;
|
|
1775
|
-
int PMPI_Comm_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1776
|
-
int PMPI_Comm_rank(MPI_Comm comm, int *rank) MPICH_API_PUBLIC;
|
|
1777
|
-
int PMPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) MPICH_API_PUBLIC;
|
|
1778
|
-
int PMPI_Comm_dup(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1779
|
-
int PMPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1780
|
-
int PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1781
|
-
int PMPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1782
|
-
int PMPI_Comm_free(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1783
|
-
int PMPI_Comm_test_inter(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
1784
|
-
int PMPI_Comm_remote_size(MPI_Comm comm, int *size) MPICH_API_PUBLIC;
|
|
1785
|
-
int PMPI_Comm_remote_group(MPI_Comm comm, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1786
|
-
int PMPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm,
|
|
1787
|
-
int remote_leader, int tag, MPI_Comm *newintercomm) MPICH_API_PUBLIC;
|
|
1788
|
-
int PMPI_Intercomm_merge(MPI_Comm intercomm, int high, MPI_Comm *newintracomm) MPICH_API_PUBLIC;
|
|
1789
1238
|
int PMPI_Keyval_create(MPI_Copy_function *copy_fn, MPI_Delete_function *delete_fn,
|
|
1790
1239
|
int *keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1791
1240
|
int PMPI_Keyval_free(int *keyval) MPICH_API_PUBLIC;
|
|
@@ -1819,8 +1268,6 @@ int PMPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUB
|
|
|
1819
1268
|
int PMPI_Errhandler_free(MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1820
1269
|
int PMPI_Error_string(int errorcode, char *string, int *resultlen) MPICH_API_PUBLIC;
|
|
1821
1270
|
int PMPI_Error_class(int errorcode, int *errorclass) MPICH_API_PUBLIC;
|
|
1822
|
-
double PMPI_Wtime(void) MPICH_API_PUBLIC;
|
|
1823
|
-
double PMPI_Wtick(void) MPICH_API_PUBLIC;
|
|
1824
1271
|
int PMPI_Init(int *argc, char ***argv) MPICH_API_PUBLIC;
|
|
1825
1272
|
int PMPI_Finalize(void) MPICH_API_PUBLIC;
|
|
1826
1273
|
int PMPI_Initialized(int *flag) MPICH_API_PUBLIC;
|
|
@@ -1830,108 +1277,8 @@ int PMPI_Abort(MPI_Comm comm, int errorcode) MPICH_API_PUBLIC;
|
|
|
1830
1277
|
stdargs are supported */
|
|
1831
1278
|
int PMPI_Pcontrol(const int level, ...) MPICH_API_PUBLIC;
|
|
1832
1279
|
|
|
1833
|
-
/* Process Creation and Management */
|
|
1834
|
-
int PMPI_Close_port(const char *port_name) MPICH_API_PUBLIC;
|
|
1835
|
-
int PMPI_Comm_accept(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1836
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1837
|
-
int PMPI_Comm_connect(const char *port_name, MPI_Info info, int root, MPI_Comm comm,
|
|
1838
|
-
MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
1839
|
-
int PMPI_Comm_disconnect(MPI_Comm *comm) MPICH_API_PUBLIC;
|
|
1840
|
-
int PMPI_Comm_get_parent(MPI_Comm *parent) MPICH_API_PUBLIC;
|
|
1841
|
-
int PMPI_Comm_join(int fd, MPI_Comm *intercomm) MPICH_API_PUBLIC;
|
|
1842
|
-
int PMPI_Comm_spawn(const char *command, char *argv[], int maxprocs, MPI_Info info, int root,
|
|
1843
|
-
MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1844
|
-
int PMPI_Comm_spawn_multiple(int count, char *array_of_commands[], char **array_of_argv[],
|
|
1845
|
-
const int array_of_maxprocs[], const MPI_Info array_of_info[],
|
|
1846
|
-
int root, MPI_Comm comm, MPI_Comm *intercomm, int array_of_errcodes[]) MPICH_API_PUBLIC;
|
|
1847
|
-
int PMPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1848
|
-
int PMPI_Open_port(MPI_Info info, char *port_name) MPICH_API_PUBLIC;
|
|
1849
|
-
int PMPI_Publish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1850
|
-
int PMPI_Unpublish_name(const char *service_name, MPI_Info info, const char *port_name) MPICH_API_PUBLIC;
|
|
1851
|
-
int PMPI_Comm_set_info(MPI_Comm comm, MPI_Info info) MPICH_API_PUBLIC;
|
|
1852
|
-
int PMPI_Comm_get_info(MPI_Comm comm, MPI_Info *info) MPICH_API_PUBLIC;
|
|
1853
|
-
|
|
1854
|
-
/* One-Sided Communications */
|
|
1855
|
-
int PMPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1856
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1857
|
-
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1858
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1859
|
-
int PMPI_Get(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1860
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1861
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1862
|
-
int PMPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
|
1863
|
-
int target_rank, MPI_Aint target_disp, int target_count,
|
|
1864
|
-
MPI_Datatype target_datatype, MPI_Win win) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1865
|
-
int PMPI_Win_complete(MPI_Win win) MPICH_API_PUBLIC;
|
|
1866
|
-
int PMPI_Win_create(void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1867
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1868
|
-
int PMPI_Win_fence(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1869
|
-
int PMPI_Win_free(MPI_Win *win) MPICH_API_PUBLIC;
|
|
1870
|
-
int PMPI_Win_get_group(MPI_Win win, MPI_Group *group) MPICH_API_PUBLIC;
|
|
1871
|
-
int PMPI_Win_lock(int lock_type, int rank, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1872
|
-
int PMPI_Win_post(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1873
|
-
int PMPI_Win_start(MPI_Group group, int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1874
|
-
int PMPI_Win_test(MPI_Win win, int *flag) MPICH_API_PUBLIC;
|
|
1875
|
-
int PMPI_Win_unlock(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1876
|
-
int PMPI_Win_wait(MPI_Win win) MPICH_API_PUBLIC;
|
|
1877
|
-
|
|
1878
1280
|
/* MPI-3 One-Sided Communication Routines */
|
|
1879
|
-
|
|
1880
|
-
MPI_Win *win) MPICH_API_PUBLIC;
|
|
1881
|
-
int PMPI_Win_allocate_shared(MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm,
|
|
1882
|
-
void *baseptr, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1883
|
-
int PMPI_Win_shared_query(MPI_Win win, int rank, MPI_Aint *size, int *disp_unit, void *baseptr) MPICH_API_PUBLIC;
|
|
1884
|
-
int PMPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win) MPICH_API_PUBLIC;
|
|
1885
|
-
int PMPI_Win_attach(MPI_Win win, void *base, MPI_Aint size) MPICH_API_PUBLIC;
|
|
1886
|
-
int PMPI_Win_detach(MPI_Win win, const void *base) MPICH_API_PUBLIC;
|
|
1887
|
-
int PMPI_Win_get_info(MPI_Win win, MPI_Info *info_used) MPICH_API_PUBLIC;
|
|
1888
|
-
int PMPI_Win_set_info(MPI_Win win, MPI_Info info) MPICH_API_PUBLIC;
|
|
1889
|
-
int PMPI_Get_accumulate(const void *origin_addr, int origin_count,
|
|
1890
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
1891
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
1892
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
1893
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1894
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1895
|
-
int PMPI_Fetch_and_op(const void *origin_addr, void *result_addr,
|
|
1896
|
-
MPI_Datatype datatype, int target_rank, MPI_Aint target_disp,
|
|
1897
|
-
MPI_Op op, MPI_Win win)
|
|
1898
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1899
|
-
int PMPI_Compare_and_swap(const void *origin_addr, const void *compare_addr,
|
|
1900
|
-
void *result_addr, MPI_Datatype datatype, int target_rank,
|
|
1901
|
-
MPI_Aint target_disp, MPI_Win win)
|
|
1902
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
1903
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4)
|
|
1904
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,4) MPICH_API_PUBLIC;
|
|
1905
|
-
int PMPI_Rput(const void *origin_addr, int origin_count,
|
|
1906
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1907
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1908
|
-
MPI_Request *request)
|
|
1909
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1910
|
-
int PMPI_Rget(void *origin_addr, int origin_count,
|
|
1911
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1912
|
-
int target_count, MPI_Datatype target_datatype, MPI_Win win,
|
|
1913
|
-
MPI_Request *request)
|
|
1914
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1915
|
-
int PMPI_Raccumulate(const void *origin_addr, int origin_count,
|
|
1916
|
-
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
1917
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
1918
|
-
MPI_Request *request)
|
|
1919
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
1920
|
-
int PMPI_Rget_accumulate(const void *origin_addr, int origin_count,
|
|
1921
|
-
MPI_Datatype origin_datatype, void *result_addr, int result_count,
|
|
1922
|
-
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
1923
|
-
int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
1924
|
-
MPI_Request *request)
|
|
1925
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
1926
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
1927
|
-
int PMPI_Win_lock_all(int assert, MPI_Win win) MPICH_API_PUBLIC;
|
|
1928
|
-
int PMPI_Win_unlock_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1929
|
-
int PMPI_Win_flush(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1930
|
-
int PMPI_Win_flush_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1931
|
-
int PMPI_Win_flush_local(int rank, MPI_Win win) MPICH_API_PUBLIC;
|
|
1932
|
-
int PMPI_Win_flush_local_all(MPI_Win win) MPICH_API_PUBLIC;
|
|
1933
|
-
int PMPI_Win_sync(MPI_Win win) MPICH_API_PUBLIC;
|
|
1934
|
-
|
|
1281
|
+
/* MPI notification extentions */
|
|
1935
1282
|
/* External Interfaces */
|
|
1936
1283
|
int PMPI_Add_error_class(int *errorclass) MPICH_API_PUBLIC;
|
|
1937
1284
|
int PMPI_Add_error_code(int errorclass, int *errorcode) MPICH_API_PUBLIC;
|
|
@@ -1943,9 +1290,7 @@ int PMPI_Comm_create_keyval(MPI_Comm_copy_attr_function *comm_copy_attr_fn,
|
|
|
1943
1290
|
int PMPI_Comm_delete_attr(MPI_Comm comm, int comm_keyval) MPICH_API_PUBLIC;
|
|
1944
1291
|
int PMPI_Comm_free_keyval(int *comm_keyval) MPICH_API_PUBLIC;
|
|
1945
1292
|
int PMPI_Comm_get_attr(MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1946
|
-
int PMPI_Comm_get_name(MPI_Comm comm, char *comm_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1947
1293
|
int PMPI_Comm_set_attr(MPI_Comm comm, int comm_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1948
|
-
int PMPI_Comm_set_name(MPI_Comm comm, const char *comm_name) MPICH_API_PUBLIC;
|
|
1949
1294
|
int PMPI_File_call_errhandler(MPI_File fh, int errorcode) MPICH_API_PUBLIC;
|
|
1950
1295
|
int PMPI_Grequest_complete(MPI_Request request) MPICH_API_PUBLIC;
|
|
1951
1296
|
int PMPI_Grequest_start(MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn,
|
|
@@ -1955,23 +1300,13 @@ int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided) MPICH
|
|
|
1955
1300
|
int PMPI_Is_thread_main(int *flag) MPICH_API_PUBLIC;
|
|
1956
1301
|
int PMPI_Query_thread(int *provided) MPICH_API_PUBLIC;
|
|
1957
1302
|
int PMPI_Status_set_cancelled(MPI_Status *status, int flag) MPICH_API_PUBLIC;
|
|
1958
|
-
int PMPI_Status_set_elements(MPI_Status *status, MPI_Datatype datatype, int count) MPICH_API_PUBLIC;
|
|
1959
1303
|
int PMPI_Type_create_keyval(MPI_Type_copy_attr_function *type_copy_attr_fn,
|
|
1960
1304
|
MPI_Type_delete_attr_function *type_delete_attr_fn,
|
|
1961
1305
|
int *type_keyval, void *extra_state) MPICH_API_PUBLIC;
|
|
1962
1306
|
int PMPI_Type_delete_attr(MPI_Datatype datatype, int type_keyval) MPICH_API_PUBLIC;
|
|
1963
|
-
int PMPI_Type_dup(MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
1964
1307
|
int PMPI_Type_free_keyval(int *type_keyval) MPICH_API_PUBLIC;
|
|
1965
1308
|
int PMPI_Type_get_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1966
|
-
int PMPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
|
|
1967
|
-
int max_datatypes, int array_of_integers[],
|
|
1968
|
-
MPI_Aint array_of_addresses[], MPI_Datatype array_of_datatypes[]) MPICH_API_PUBLIC;
|
|
1969
|
-
int PMPI_Type_get_envelope(MPI_Datatype datatype, int *num_integers, int *num_addresses,
|
|
1970
|
-
int *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
1971
|
-
int PMPI_Type_get_name(MPI_Datatype datatype, char *type_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1972
1309
|
int PMPI_Type_set_attr(MPI_Datatype datatype, int type_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1973
|
-
int PMPI_Type_set_name(MPI_Datatype datatype, const char *type_name) MPICH_API_PUBLIC;
|
|
1974
|
-
int PMPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype) MPICH_API_PUBLIC;
|
|
1975
1310
|
int PMPI_Win_call_errhandler(MPI_Win win, int errorcode) MPICH_API_PUBLIC;
|
|
1976
1311
|
int PMPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
1977
1312
|
MPI_Win_delete_attr_function *win_delete_attr_fn, int *win_keyval,
|
|
@@ -1979,11 +1314,8 @@ int PMPI_Win_create_keyval(MPI_Win_copy_attr_function *win_copy_attr_fn,
|
|
|
1979
1314
|
int PMPI_Win_delete_attr(MPI_Win win, int win_keyval) MPICH_API_PUBLIC;
|
|
1980
1315
|
int PMPI_Win_free_keyval(int *win_keyval) MPICH_API_PUBLIC;
|
|
1981
1316
|
int PMPI_Win_get_attr(MPI_Win win, int win_keyval, void *attribute_val, int *flag) MPICH_API_PUBLIC;
|
|
1982
|
-
int PMPI_Win_get_name(MPI_Win win, char *win_name, int *resultlen) MPICH_API_PUBLIC;
|
|
1983
1317
|
int PMPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) MPICH_API_PUBLIC;
|
|
1984
|
-
int PMPI_Win_set_name(MPI_Win win, const char *win_name) MPICH_API_PUBLIC;
|
|
1985
1318
|
|
|
1986
|
-
int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr) MPICH_API_PUBLIC;
|
|
1987
1319
|
int PMPI_Comm_create_errhandler(MPI_Comm_errhandler_function *comm_errhandler_fn,
|
|
1988
1320
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1989
1321
|
int PMPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -1993,8 +1325,6 @@ int PMPI_File_create_errhandler(MPI_File_errhandler_function *file_errhandler_fn
|
|
|
1993
1325
|
int PMPI_File_get_errhandler(MPI_File file, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
1994
1326
|
int PMPI_File_set_errhandler(MPI_File file, MPI_Errhandler errhandler) MPICH_API_PUBLIC;
|
|
1995
1327
|
int PMPI_Finalized(int *flag) MPICH_API_PUBLIC;
|
|
1996
|
-
int PMPI_Free_mem(void *base) MPICH_API_PUBLIC;
|
|
1997
|
-
int PMPI_Get_address(const void *location, MPI_Aint *address) MPICH_API_PUBLIC;
|
|
1998
1328
|
int PMPI_Info_create(MPI_Info *info) MPICH_API_PUBLIC;
|
|
1999
1329
|
int PMPI_Info_delete(MPI_Info info, const char *key) MPICH_API_PUBLIC;
|
|
2000
1330
|
int PMPI_Info_dup(MPI_Info info, MPI_Info *newinfo) MPICH_API_PUBLIC;
|
|
@@ -2004,41 +1334,9 @@ int PMPI_Info_get_nkeys(MPI_Info info, int *nkeys) MPICH_API_PUBLIC;
|
|
|
2004
1334
|
int PMPI_Info_get_nthkey(MPI_Info info, int n, char *key) MPICH_API_PUBLIC;
|
|
2005
1335
|
int PMPI_Info_get_valuelen(MPI_Info info, const char *key, int *valuelen, int *flag) MPICH_API_PUBLIC;
|
|
2006
1336
|
int PMPI_Info_set(MPI_Info info, const char *key, const char *value) MPICH_API_PUBLIC;
|
|
2007
|
-
int PMPI_Pack_external(const char datarep[], const void *inbuf, int incount,
|
|
2008
|
-
MPI_Datatype datatype, void *outbuf, MPI_Aint outsize, MPI_Aint *position)
|
|
2009
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2010
|
-
int PMPI_Pack_external_size(const char datarep[], int incount, MPI_Datatype datatype,
|
|
2011
|
-
MPI_Aint *size) MPICH_API_PUBLIC;
|
|
2012
1337
|
int PMPI_Request_get_status(MPI_Request request, int *flag, MPI_Status *status) MPICH_API_PUBLIC;
|
|
2013
1338
|
int PMPI_Status_c2f(const MPI_Status *c_status, MPI_Fint *f_status) MPICH_API_PUBLIC;
|
|
2014
1339
|
int PMPI_Status_f2c(const MPI_Fint *f_status, MPI_Status *c_status) MPICH_API_PUBLIC;
|
|
2015
|
-
int PMPI_Type_create_darray(int size, int rank, int ndims, const int array_of_gsizes[],
|
|
2016
|
-
const int array_of_distribs[], const int array_of_dargs[],
|
|
2017
|
-
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
2018
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2019
|
-
int PMPI_Type_create_hindexed(int count, const int array_of_blocklengths[],
|
|
2020
|
-
const MPI_Aint array_of_displacements[], MPI_Datatype oldtype,
|
|
2021
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2022
|
-
int PMPI_Type_create_hvector(int count, int blocklength, MPI_Aint stride, MPI_Datatype oldtype,
|
|
2023
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2024
|
-
int PMPI_Type_create_indexed_block(int count, int blocklength, const int array_of_displacements[],
|
|
2025
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2026
|
-
int PMPI_Type_create_hindexed_block(int count, int blocklength,
|
|
2027
|
-
const MPI_Aint array_of_displacements[],
|
|
2028
|
-
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2029
|
-
int PMPI_Type_create_resized(MPI_Datatype oldtype, MPI_Aint lb, MPI_Aint extent,
|
|
2030
|
-
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2031
|
-
int PMPI_Type_create_struct(int count, const int array_of_blocklengths[],
|
|
2032
|
-
const MPI_Aint array_of_displacements[],
|
|
2033
|
-
const MPI_Datatype array_of_types[], MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2034
|
-
int PMPI_Type_create_subarray(int ndims, const int array_of_sizes[],
|
|
2035
|
-
const int array_of_subsizes[], const int array_of_starts[],
|
|
2036
|
-
int order, MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2037
|
-
int PMPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) MPICH_API_PUBLIC;
|
|
2038
|
-
int PMPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint *true_lb, MPI_Aint *true_extent) MPICH_API_PUBLIC;
|
|
2039
|
-
int PMPI_Unpack_external(const char datarep[], const void *inbuf, MPI_Aint insize,
|
|
2040
|
-
MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype)
|
|
2041
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2042
1340
|
int PMPI_Win_create_errhandler(MPI_Win_errhandler_function *win_errhandler_fn,
|
|
2043
1341
|
MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
2044
1342
|
int PMPI_Win_get_errhandler(MPI_Win win, MPI_Errhandler *errhandler) MPICH_API_PUBLIC;
|
|
@@ -2051,14 +1349,6 @@ int PMPI_Type_create_f90_integer(int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
|
2051
1349
|
int PMPI_Type_create_f90_real(int p, int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2052
1350
|
int PMPI_Type_create_f90_complex(int p, int r, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2053
1351
|
|
|
2054
|
-
int PMPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
2055
|
-
MPI_Op op)
|
|
2056
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2057
|
-
int PMPI_Op_commutative(MPI_Op op, int *commute) MPICH_API_PUBLIC;
|
|
2058
|
-
int PMPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2059
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2060
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2061
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2062
1352
|
int PMPI_Dist_graph_create_adjacent(MPI_Comm comm_old, int indegree, const int sources[],
|
|
2063
1353
|
const int sourceweights[], int outdegree,
|
|
2064
1354
|
const int destinations[], const int destweights[],
|
|
@@ -2069,140 +1359,6 @@ int PMPI_Dist_graph_create(MPI_Comm comm_old, int n, const int sources[], const
|
|
|
2069
1359
|
int PMPI_Dist_graph_neighbors_count(MPI_Comm comm, int *indegree, int *outdegree, int *weighted) MPICH_API_PUBLIC;
|
|
2070
1360
|
int PMPI_Dist_graph_neighbors(MPI_Comm comm, int maxindegree, int sources[], int sourceweights[],
|
|
2071
1361
|
int maxoutdegree, int destinations[], int destweights[]) MPICH_API_PUBLIC;
|
|
2072
|
-
|
|
2073
|
-
/* Matched probe functionality */
|
|
2074
|
-
int PMPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message,
|
|
2075
|
-
MPI_Status *status) MPICH_API_PUBLIC;
|
|
2076
|
-
int PMPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
2077
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2078
|
-
int PMPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status) MPICH_API_PUBLIC;
|
|
2079
|
-
int PMPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
2080
|
-
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2081
|
-
|
|
2082
|
-
/* Nonblocking collectives */
|
|
2083
|
-
int PMPI_Comm_idup(MPI_Comm comm, MPI_Comm *newcomm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2084
|
-
int PMPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2085
|
-
int PMPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2086
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2087
|
-
int PMPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2088
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2089
|
-
MPI_Request *request)
|
|
2090
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2091
|
-
int PMPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2092
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2093
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2094
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2095
|
-
int PMPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2096
|
-
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2097
|
-
MPI_Request *request)
|
|
2098
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2099
|
-
int PMPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
2100
|
-
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2101
|
-
int root, MPI_Comm comm, MPI_Request *request)
|
|
2102
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2103
|
-
int PMPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2104
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2105
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2106
|
-
int PMPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2107
|
-
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2108
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2109
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2110
|
-
int PMPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2111
|
-
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2112
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2113
|
-
int PMPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2114
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2115
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2116
|
-
MPI_Request *request)
|
|
2117
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2118
|
-
int PMPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2119
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2120
|
-
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2121
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2122
|
-
int PMPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2123
|
-
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
2124
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2125
|
-
int PMPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2126
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2127
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2128
|
-
int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
2129
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2130
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2131
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2132
|
-
int PMPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2133
|
-
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2134
|
-
MPI_Request *request)
|
|
2135
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2136
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2137
|
-
int PMPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2138
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2139
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2140
|
-
int PMPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2141
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2142
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2143
|
-
|
|
2144
|
-
/* Neighborhood collectives */
|
|
2145
|
-
int PMPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2146
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2147
|
-
MPI_Comm comm, MPI_Request *request)
|
|
2148
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2149
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2150
|
-
int PMPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2151
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2152
|
-
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2153
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2154
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2155
|
-
int PMPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2156
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2157
|
-
MPI_Request *request)
|
|
2158
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2159
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2160
|
-
int PMPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2161
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2162
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2163
|
-
MPI_Request *request)
|
|
2164
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2165
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2166
|
-
int PMPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[],
|
|
2167
|
-
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2168
|
-
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
2169
|
-
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2170
|
-
int PMPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2171
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2172
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2173
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2174
|
-
int PMPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2175
|
-
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2176
|
-
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2177
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2178
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2179
|
-
int PMPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2180
|
-
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2181
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3)
|
|
2182
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2183
|
-
int PMPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2184
|
-
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2185
|
-
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2186
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4)
|
|
2187
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2188
|
-
int PMPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
2189
|
-
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2190
|
-
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2191
|
-
MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2192
|
-
|
|
2193
|
-
/* Shared memory */
|
|
2194
|
-
int PMPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2195
|
-
|
|
2196
|
-
/* Noncollective communicator creation */
|
|
2197
|
-
int PMPI_Comm_create_group(MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2198
|
-
|
|
2199
|
-
/* MPI-3 "large count" routines */
|
|
2200
|
-
int PMPI_Get_elements_x(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count) MPICH_API_PUBLIC;
|
|
2201
|
-
int PMPI_Status_set_elements_x(MPI_Status *status, MPI_Datatype datatype, MPI_Count count) MPICH_API_PUBLIC;
|
|
2202
|
-
int PMPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
2203
|
-
int PMPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent) MPICH_API_PUBLIC;
|
|
2204
|
-
int PMPI_Type_size_x(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2205
|
-
|
|
2206
1362
|
/* MPI_Aint addressing arithmetic */
|
|
2207
1363
|
MPI_Aint PMPI_Aint_add(MPI_Aint base, MPI_Aint disp) MPICH_API_PUBLIC;
|
|
2208
1364
|
MPI_Aint PMPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
@@ -2210,7 +1366,6 @@ MPI_Aint PMPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2) MPICH_API_PUBLIC;
|
|
|
2210
1366
|
/* MPI_T interface */
|
|
2211
1367
|
/* The MPI_T routines are available only in C bindings - tell tools that they
|
|
2212
1368
|
can skip these prototypes */
|
|
2213
|
-
/* Begin Skip Prototypes */
|
|
2214
1369
|
int PMPI_T_init_thread(int required, int *provided) MPICH_API_PUBLIC;
|
|
2215
1370
|
int PMPI_T_finalize(void) MPICH_API_PUBLIC;
|
|
2216
1371
|
int PMPI_T_enum_get_info(MPI_T_enum enumtype, int *num, char *name, int *name_len) MPICH_API_PUBLIC;
|
|
@@ -2250,182 +1405,2114 @@ int PMPI_T_cvar_get_index(const char *name, int *cvar_index) MPICH_API_PUBLIC;
|
|
|
2250
1405
|
int PMPI_T_pvar_get_index(const char *name, int var_class, int *pvar_index) MPICH_API_PUBLIC;
|
|
2251
1406
|
int PMPI_T_category_get_index(const char *name, int *cat_index) MPICH_API_PUBLIC;
|
|
2252
1407
|
/* End Skip Prototypes */
|
|
1408
|
+
#endif /* MPI_BUILD_PROFILING */
|
|
2253
1409
|
|
|
2254
1410
|
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
int
|
|
2258
|
-
int PMPIX_Comm_failure_get_acked(MPI_Comm comm, MPI_Group *failedgrp) MPICH_API_PUBLIC;
|
|
2259
|
-
int PMPIX_Comm_revoke(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2260
|
-
int PMPIX_Comm_shrink(MPI_Comm comm, MPI_Comm *newcomm) MPICH_API_PUBLIC;
|
|
2261
|
-
int PMPIX_Comm_agree(MPI_Comm comm, int *flag) MPICH_API_PUBLIC;
|
|
2262
|
-
|
|
2263
|
-
/* MPI-4.0 Large count collective operations */
|
|
2264
|
-
int MPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2265
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2266
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2267
|
-
int MPI_Allreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2268
|
-
MPI_Op op, MPI_Comm comm)
|
|
2269
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2270
|
-
int MPI_Alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2271
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2272
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2273
|
-
int MPI_Bcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2274
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2275
|
-
int MPI_Exscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2276
|
-
MPI_Op op, MPI_Comm comm)
|
|
2277
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2278
|
-
int MPI_Gather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2279
|
-
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2280
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2281
|
-
int MPI_Iallgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2282
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2283
|
-
MPI_Request *request)
|
|
2284
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2285
|
-
int MPI_Iallreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2286
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2287
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2288
|
-
int MPI_Ialltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2289
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2290
|
-
MPI_Request *request)
|
|
2291
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2292
|
-
int MPI_Ibcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2293
|
-
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2294
|
-
int MPI_Iexscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2295
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2296
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2297
|
-
int MPI_Igather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2298
|
-
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2299
|
-
MPI_Request *request)
|
|
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)
|
|
2300
1414
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2301
|
-
int
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
int
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
int
|
|
2310
|
-
|
|
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)
|
|
2311
1429
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2312
|
-
int
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
int
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
int
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
int
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
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)
|
|
2339
1466
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2340
|
-
int
|
|
2341
|
-
|
|
2342
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
int PMPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2347
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2348
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2349
|
-
int PMPI_Allreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2350
|
-
MPI_Op op, MPI_Comm comm)
|
|
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)
|
|
2351
1469
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2352
|
-
int
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
int
|
|
2356
|
-
|
|
2357
|
-
int PMPI_Exscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2358
|
-
MPI_Op op, MPI_Comm comm)
|
|
2359
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2360
|
-
int PMPI_Gather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2361
|
-
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2362
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2363
|
-
int PMPI_Iallgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2364
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2365
|
-
MPI_Request *request)
|
|
2366
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2367
|
-
int PMPI_Iallreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2368
|
-
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2369
|
-
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2370
|
-
int PMPI_Ialltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2371
|
-
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
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,
|
|
2372
1475
|
MPI_Request *request)
|
|
2373
1476
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2374
|
-
int
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
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)
|
|
2382
1497
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2383
|
-
int
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
int
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
int
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
int
|
|
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
|
+
|
|
2023
|
+
/* Begin Skip Prototypes */
|
|
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;
|
|
2036
|
+
/* End Skip Prototypes */
|
|
2037
|
+
|
|
2038
|
+
int MPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2039
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2040
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2041
|
+
int MPI_Allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2042
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2043
|
+
MPI_Info info, MPI_Request *request)
|
|
2044
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2045
|
+
int MPI_Allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2046
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2047
|
+
MPI_Comm comm)
|
|
2048
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2049
|
+
int MPI_Allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2050
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2051
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2052
|
+
MPI_Request *request)
|
|
2053
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2054
|
+
int MPI_Allreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2055
|
+
MPI_Op op, MPI_Comm comm)
|
|
2056
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2057
|
+
int MPI_Allreduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2058
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2059
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2060
|
+
int MPI_Alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2061
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2062
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2063
|
+
int MPI_Alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2064
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2065
|
+
MPI_Info info, MPI_Request *request)
|
|
2066
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2067
|
+
int MPI_Alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2068
|
+
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2069
|
+
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2070
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2071
|
+
int MPI_Alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2072
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2073
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2074
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2075
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2076
|
+
int MPI_Alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2077
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2078
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2079
|
+
MPICH_API_PUBLIC;
|
|
2080
|
+
int MPI_Alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2081
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[], void *recvbuf,
|
|
2082
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2083
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
2084
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2085
|
+
int MPI_Bcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2086
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2087
|
+
int MPI_Bcast_init_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2088
|
+
MPI_Info info, MPI_Request *request)
|
|
2089
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2090
|
+
int MPI_Exscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2091
|
+
MPI_Op op, MPI_Comm comm)
|
|
2092
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2093
|
+
int MPI_Exscan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2094
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2095
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2096
|
+
int MPI_Gather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2097
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2098
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2099
|
+
int MPI_Gather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2100
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2101
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2102
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2103
|
+
int MPI_Gatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2104
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2105
|
+
int root, MPI_Comm comm)
|
|
2106
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2107
|
+
int MPI_Gatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2108
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2109
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2110
|
+
MPI_Request *request)
|
|
2111
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2112
|
+
int MPI_Iallgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2113
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2114
|
+
MPI_Request *request)
|
|
2115
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2116
|
+
int MPI_Iallgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2117
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2118
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2119
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2120
|
+
int MPI_Iallreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2121
|
+
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2122
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2123
|
+
int MPI_Ialltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2124
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2125
|
+
MPI_Request *request)
|
|
2126
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2127
|
+
int MPI_Ialltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2128
|
+
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2129
|
+
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2130
|
+
MPI_Request *request)
|
|
2131
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2132
|
+
int MPI_Ialltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2133
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2134
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2135
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2136
|
+
int MPI_Ibcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2137
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2138
|
+
int MPI_Iexscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2139
|
+
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2140
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2141
|
+
int MPI_Igather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2142
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2143
|
+
MPI_Request *request)
|
|
2144
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2145
|
+
int MPI_Igatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2146
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2147
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2148
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2149
|
+
int MPI_Ineighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2150
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2151
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2152
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2153
|
+
int MPI_Ineighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2154
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2155
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2156
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2157
|
+
int MPI_Ineighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2158
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2159
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2160
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2161
|
+
int MPI_Ineighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2162
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2163
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2164
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2165
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2166
|
+
int MPI_Ineighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2167
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2168
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2169
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request)
|
|
2170
|
+
MPICH_API_PUBLIC;
|
|
2171
|
+
int MPI_Ireduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2172
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
2173
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2174
|
+
int MPI_Ireduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2175
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2176
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2177
|
+
int MPI_Ireduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2395
2178
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2396
2179
|
MPI_Request *request)
|
|
2397
2180
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2398
|
-
int
|
|
2181
|
+
int MPI_Iscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2399
2182
|
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2400
2183
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2401
|
-
int
|
|
2184
|
+
int MPI_Iscatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2402
2185
|
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2403
2186
|
MPI_Request *request)
|
|
2404
2187
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2405
|
-
int
|
|
2188
|
+
int MPI_Iscatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2189
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2190
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request)
|
|
2191
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2192
|
+
int MPI_Neighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2406
2193
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2407
2194
|
MPI_Comm comm)
|
|
2408
2195
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2409
|
-
int
|
|
2196
|
+
int MPI_Neighbor_allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2197
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2198
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2199
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2200
|
+
int MPI_Neighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2201
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2202
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2203
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2204
|
+
int MPI_Neighbor_allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2205
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2206
|
+
const MPI_Aint displs[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2207
|
+
MPI_Info info, MPI_Request *request)
|
|
2208
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2209
|
+
int MPI_Neighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2410
2210
|
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2411
2211
|
MPI_Comm comm)
|
|
2412
2212
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2413
|
-
int
|
|
2213
|
+
int MPI_Neighbor_alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2214
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2215
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2216
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2217
|
+
int MPI_Neighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2218
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2219
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2220
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2221
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2222
|
+
int MPI_Neighbor_alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2223
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2224
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2225
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2226
|
+
MPI_Request *request)
|
|
2227
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2228
|
+
int MPI_Neighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2229
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2230
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2231
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2232
|
+
int MPI_Neighbor_alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2233
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2234
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2235
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2236
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2237
|
+
MPICH_API_PUBLIC;
|
|
2238
|
+
int MPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2414
2239
|
MPI_Op op, int root, MPI_Comm comm)
|
|
2415
2240
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2416
|
-
int
|
|
2241
|
+
int MPI_Reduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2242
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
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;
|
|
2247
|
+
int MPI_Reduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2248
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2249
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2250
|
+
int MPI_Reduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2417
2251
|
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2418
2252
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2419
|
-
int
|
|
2253
|
+
int MPI_Reduce_scatter_block_init_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2254
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2255
|
+
MPI_Request *request)
|
|
2256
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2257
|
+
int MPI_Reduce_scatter_init_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2258
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2259
|
+
MPI_Request *request)
|
|
2260
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2261
|
+
int MPI_Scan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2420
2262
|
MPI_Op op, MPI_Comm comm)
|
|
2421
2263
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2264
|
+
int MPI_Scan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2265
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2266
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2267
|
+
int MPI_Scatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2268
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2269
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2270
|
+
int MPI_Scatter_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2271
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2272
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2273
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2274
|
+
int MPI_Scatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2275
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2276
|
+
int root, MPI_Comm comm)
|
|
2277
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2278
|
+
int MPI_Scatterv_init_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2279
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2280
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2281
|
+
MPI_Request *request)
|
|
2282
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2283
|
+
int MPI_Get_count_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2284
|
+
MPICH_API_PUBLIC;
|
|
2285
|
+
int MPI_Get_elements_c(const MPI_Status *status, MPI_Datatype datatype, MPI_Count *count)
|
|
2286
|
+
MPICH_API_PUBLIC;
|
|
2287
|
+
int MPI_Pack_c(const void *inbuf, MPI_Count incount, MPI_Datatype datatype, void *outbuf,
|
|
2288
|
+
MPI_Count outsize, MPI_Count *position, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2289
|
+
int MPI_Pack_external_c(const char *datarep, const void *inbuf, MPI_Count incount,
|
|
2290
|
+
MPI_Datatype datatype, void *outbuf, MPI_Count outsize,
|
|
2291
|
+
MPI_Count *position) MPICH_API_PUBLIC;
|
|
2292
|
+
int MPI_Pack_external_size_c(const char *datarep, MPI_Count incount, MPI_Datatype datatype,
|
|
2293
|
+
MPI_Count *size) MPICH_API_PUBLIC;
|
|
2294
|
+
int MPI_Pack_size_c(MPI_Count incount, MPI_Datatype datatype, MPI_Comm comm, MPI_Count *size)
|
|
2295
|
+
MPICH_API_PUBLIC;
|
|
2296
|
+
int MPI_Status_set_elements_c(MPI_Status *status, MPI_Datatype datatype, MPI_Count count)
|
|
2297
|
+
MPICH_API_PUBLIC;
|
|
2298
|
+
int MPI_Type_contiguous_c(MPI_Count count, MPI_Datatype oldtype, MPI_Datatype *newtype)
|
|
2299
|
+
MPICH_API_PUBLIC;
|
|
2300
|
+
int MPI_Type_create_darray_c(int size, int rank, int ndims, const MPI_Count array_of_gsizes[],
|
|
2301
|
+
const int array_of_distribs[], const int array_of_dargs[],
|
|
2302
|
+
const int array_of_psizes[], int order, MPI_Datatype oldtype,
|
|
2303
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2304
|
+
int MPI_Type_create_hindexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
2305
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2306
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2307
|
+
int MPI_Type_create_hindexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
2308
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2309
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2310
|
+
int MPI_Type_create_hvector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
2311
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2312
|
+
int MPI_Type_create_indexed_block_c(MPI_Count count, MPI_Count blocklength,
|
|
2313
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2314
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2315
|
+
int MPI_Type_create_resized_c(MPI_Datatype oldtype, MPI_Count lb, MPI_Count extent,
|
|
2316
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2317
|
+
int MPI_Type_create_struct_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
2318
|
+
const MPI_Count array_of_displacements[],
|
|
2319
|
+
const MPI_Datatype array_of_types[], MPI_Datatype *newtype)
|
|
2320
|
+
MPICH_API_PUBLIC;
|
|
2321
|
+
int MPI_Type_create_subarray_c(int ndims, const MPI_Count array_of_sizes[],
|
|
2322
|
+
const MPI_Count array_of_subsizes[],
|
|
2323
|
+
const MPI_Count array_of_starts[], int order, MPI_Datatype oldtype,
|
|
2324
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2325
|
+
int MPI_Type_get_contents_c(MPI_Datatype datatype, MPI_Count max_integers, MPI_Count max_addresses,
|
|
2326
|
+
MPI_Count max_large_counts, MPI_Count max_datatypes,
|
|
2327
|
+
int array_of_integers[], MPI_Aint array_of_addresses[],
|
|
2328
|
+
MPI_Count array_of_large_counts[], MPI_Datatype array_of_datatypes[])
|
|
2329
|
+
MPICH_API_PUBLIC;
|
|
2330
|
+
int MPI_Type_get_envelope_c(MPI_Datatype datatype, MPI_Count *num_integers,
|
|
2331
|
+
MPI_Count *num_addresses, MPI_Count *num_large_counts,
|
|
2332
|
+
MPI_Count *num_datatypes, int *combiner) MPICH_API_PUBLIC;
|
|
2333
|
+
int MPI_Type_get_extent_c(MPI_Datatype datatype, MPI_Count *lb, MPI_Count *extent)
|
|
2334
|
+
MPICH_API_PUBLIC;
|
|
2335
|
+
int MPI_Type_get_true_extent_c(MPI_Datatype datatype, MPI_Count *true_lb, MPI_Count *true_extent)
|
|
2336
|
+
MPICH_API_PUBLIC;
|
|
2337
|
+
int MPI_Type_indexed_c(MPI_Count count, const MPI_Count array_of_blocklengths[],
|
|
2338
|
+
const MPI_Count array_of_displacements[], MPI_Datatype oldtype,
|
|
2339
|
+
MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2340
|
+
int MPI_Type_size_c(MPI_Datatype datatype, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2341
|
+
int MPI_Type_vector_c(MPI_Count count, MPI_Count blocklength, MPI_Count stride,
|
|
2342
|
+
MPI_Datatype oldtype, MPI_Datatype *newtype) MPICH_API_PUBLIC;
|
|
2343
|
+
int MPI_Unpack_c(const void *inbuf, MPI_Count insize, MPI_Count *position, void *outbuf,
|
|
2344
|
+
MPI_Count outcount, MPI_Datatype datatype, MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2345
|
+
int MPI_Unpack_external_c(const char datarep[], const void *inbuf, MPI_Count insize,
|
|
2346
|
+
MPI_Count *position, void *outbuf, MPI_Count outcount,
|
|
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;
|
|
2357
|
+
int MPI_Bsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2358
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2359
|
+
int MPI_Bsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2360
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2361
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2362
|
+
int MPI_Buffer_attach_c(void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
2363
|
+
int MPI_Buffer_detach_c(void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
2364
|
+
int MPI_Ibsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2365
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2366
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2367
|
+
int MPI_Imrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
2368
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2369
|
+
int MPI_Irecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2370
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2371
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2372
|
+
int MPI_Irsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2373
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2374
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2375
|
+
int MPI_Isend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2376
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2377
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2378
|
+
int MPI_Issend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2379
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2380
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2381
|
+
int MPI_Mrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
2382
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2383
|
+
int MPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2384
|
+
MPI_Comm comm, MPI_Status *status)
|
|
2385
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2386
|
+
int MPI_Recv_init_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
2387
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2388
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2389
|
+
int MPI_Rsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2390
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2391
|
+
int MPI_Rsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2392
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2393
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2394
|
+
int MPI_Send_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2395
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2396
|
+
int MPI_Send_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2397
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2398
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2399
|
+
int MPI_Sendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, int dest,
|
|
2400
|
+
int sendtag, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2401
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2402
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
2403
|
+
int MPI_Sendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int sendtag,
|
|
2404
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
2405
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2406
|
+
int MPI_Ssend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2407
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2408
|
+
int MPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
2409
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2410
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2411
|
+
int MPI_Accumulate_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2412
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2413
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win)
|
|
2414
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2415
|
+
int MPI_Get_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2416
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2417
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
2418
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2419
|
+
int MPI_Get_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
2420
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
2421
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
2422
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
2423
|
+
MPI_Win win)
|
|
2424
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2425
|
+
int MPI_Put_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2426
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2427
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
2428
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2429
|
+
int MPI_Raccumulate_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2430
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2431
|
+
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win, MPI_Request *request)
|
|
2432
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2433
|
+
int MPI_Rget_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2434
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2435
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
2436
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2437
|
+
int MPI_Rget_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
2438
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
2439
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
2440
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
2441
|
+
MPI_Win win, MPI_Request *request)
|
|
2442
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2443
|
+
int MPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
2444
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
2445
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
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 */
|
|
2459
|
+
int PMPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2460
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2461
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2462
|
+
int PMPI_Allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2463
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2464
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2465
|
+
int PMPI_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2466
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2467
|
+
MPI_Request *request)
|
|
2468
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2469
|
+
int PMPI_Allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2470
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2471
|
+
MPI_Info info, MPI_Request *request)
|
|
2472
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2473
|
+
int PMPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2474
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2475
|
+
MPI_Comm comm)
|
|
2476
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2477
|
+
int PMPI_Allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2478
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2479
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2480
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2481
|
+
int PMPI_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2482
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2483
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2484
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2485
|
+
int PMPI_Allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2486
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2487
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2488
|
+
MPI_Request *request)
|
|
2489
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2490
|
+
int PMPI_Allreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2491
|
+
MPI_Comm comm)
|
|
2492
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2493
|
+
int PMPI_Allreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2494
|
+
MPI_Op op, MPI_Comm comm)
|
|
2495
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2496
|
+
int PMPI_Allreduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2497
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2498
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2499
|
+
int PMPI_Allreduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count,
|
|
2500
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2501
|
+
MPI_Request *request)
|
|
2502
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2503
|
+
int PMPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2504
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2505
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2506
|
+
int PMPI_Alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2507
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2508
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2509
|
+
int PMPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2510
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2511
|
+
MPI_Request *request)
|
|
2512
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2513
|
+
int PMPI_Alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2514
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2515
|
+
MPI_Info info, MPI_Request *request)
|
|
2516
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2517
|
+
int PMPI_Alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2518
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2519
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2520
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2521
|
+
int PMPI_Alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2522
|
+
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2523
|
+
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2524
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2525
|
+
int PMPI_Alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2526
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2527
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2528
|
+
MPI_Request *request)
|
|
2529
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2530
|
+
int PMPI_Alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2531
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2532
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2533
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2534
|
+
MPI_Request *request)
|
|
2535
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2536
|
+
int PMPI_Alltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2537
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2538
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2539
|
+
MPICH_API_PUBLIC;
|
|
2540
|
+
int PMPI_Alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2541
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2542
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm)
|
|
2543
|
+
MPICH_API_PUBLIC;
|
|
2544
|
+
int PMPI_Alltoallw_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2545
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2546
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2547
|
+
MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2548
|
+
int PMPI_Alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2549
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[], void *recvbuf,
|
|
2550
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2551
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
2552
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2553
|
+
int PMPI_Barrier(MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2554
|
+
int PMPI_Barrier_init(MPI_Comm comm, MPI_Info info, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2555
|
+
int PMPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2556
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2557
|
+
int PMPI_Bcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm)
|
|
2558
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2559
|
+
int PMPI_Bcast_init(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2560
|
+
MPI_Info info, MPI_Request *request)
|
|
2561
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2562
|
+
int PMPI_Bcast_init_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2563
|
+
MPI_Info info, MPI_Request *request)
|
|
2564
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2565
|
+
int PMPI_Exscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2566
|
+
MPI_Comm comm)
|
|
2567
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2568
|
+
int PMPI_Exscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2569
|
+
MPI_Op op, MPI_Comm comm)
|
|
2570
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2571
|
+
int PMPI_Exscan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2572
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2573
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2574
|
+
int PMPI_Exscan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2575
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2576
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2577
|
+
int PMPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2578
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2579
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2580
|
+
int PMPI_Gather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2581
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2582
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2583
|
+
int PMPI_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2584
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2585
|
+
MPI_Request *request)
|
|
2586
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2587
|
+
int PMPI_Gather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2588
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2589
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2590
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2591
|
+
int PMPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2592
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2593
|
+
MPI_Comm comm)
|
|
2594
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2595
|
+
int PMPI_Gatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2596
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2597
|
+
int root, MPI_Comm comm)
|
|
2598
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2599
|
+
int PMPI_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2600
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2601
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2602
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2603
|
+
int PMPI_Gatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2604
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2605
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2606
|
+
MPI_Request *request)
|
|
2607
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2608
|
+
int PMPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2609
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2610
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2611
|
+
int PMPI_Iallgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2612
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2613
|
+
MPI_Request *request)
|
|
2614
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2615
|
+
int PMPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2616
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype,
|
|
2617
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2618
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2619
|
+
int PMPI_Iallgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2620
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2621
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2622
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2623
|
+
int PMPI_Iallreduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2624
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2625
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2626
|
+
int PMPI_Iallreduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2627
|
+
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2628
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2629
|
+
int PMPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2630
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2631
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2632
|
+
int PMPI_Ialltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2633
|
+
MPI_Count recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2634
|
+
MPI_Request *request)
|
|
2635
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2636
|
+
int PMPI_Ialltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2637
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2638
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2639
|
+
MPI_Request *request)
|
|
2640
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2641
|
+
int PMPI_Ialltoallv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2642
|
+
MPI_Datatype sendtype, void *recvbuf, const MPI_Count recvcounts[],
|
|
2643
|
+
const MPI_Aint rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2644
|
+
MPI_Request *request)
|
|
2645
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2646
|
+
int PMPI_Ialltoallw(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2647
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2648
|
+
const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2649
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2650
|
+
int PMPI_Ialltoallw_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint sdispls[],
|
|
2651
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const MPI_Count recvcounts[],
|
|
2652
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
|
|
2653
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2654
|
+
int PMPI_Ibarrier(MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2655
|
+
int PMPI_Ibcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2656
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2657
|
+
int PMPI_Ibcast_c(void *buffer, MPI_Count count, MPI_Datatype datatype, int root, MPI_Comm comm,
|
|
2658
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
2659
|
+
int PMPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2660
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2661
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2662
|
+
int PMPI_Iexscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2663
|
+
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2664
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2665
|
+
int PMPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2666
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2667
|
+
MPI_Request *request)
|
|
2668
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2669
|
+
int PMPI_Igather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2670
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2671
|
+
MPI_Request *request)
|
|
2672
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2673
|
+
int PMPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2674
|
+
const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root,
|
|
2675
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2676
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2677
|
+
int PMPI_Igatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2678
|
+
const MPI_Count recvcounts[], const MPI_Aint displs[], MPI_Datatype recvtype,
|
|
2679
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2680
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2681
|
+
int PMPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2682
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2683
|
+
MPI_Request *request)
|
|
2684
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2685
|
+
int PMPI_Ineighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2686
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2687
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2688
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2689
|
+
int PMPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2690
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2691
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2692
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2693
|
+
int PMPI_Ineighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2694
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2695
|
+
const MPI_Aint displs[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2696
|
+
MPI_Request *request)
|
|
2697
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2698
|
+
int PMPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2699
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2700
|
+
MPI_Request *request)
|
|
2701
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2702
|
+
int PMPI_Ineighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2703
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2704
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2705
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2706
|
+
int PMPI_Ineighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2707
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2708
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2709
|
+
MPI_Request *request)
|
|
2710
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2711
|
+
int PMPI_Ineighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2712
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2713
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2714
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
|
|
2715
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2716
|
+
int PMPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
2717
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2718
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2719
|
+
MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2720
|
+
int PMPI_Ineighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2721
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2722
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2723
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2724
|
+
MPI_Comm comm, MPI_Request *request) MPICH_API_PUBLIC;
|
|
2725
|
+
int PMPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2726
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2727
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2728
|
+
int PMPI_Ireduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2729
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Request *request)
|
|
2730
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2731
|
+
int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
2732
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2733
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2734
|
+
int PMPI_Ireduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2735
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2736
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2737
|
+
int PMPI_Ireduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2738
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2739
|
+
MPI_Request *request)
|
|
2740
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2741
|
+
int PMPI_Ireduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2742
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm,
|
|
2743
|
+
MPI_Request *request)
|
|
2744
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2745
|
+
int PMPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2746
|
+
MPI_Comm comm, MPI_Request *request)
|
|
2747
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2748
|
+
int PMPI_Iscan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2749
|
+
MPI_Op op, MPI_Comm comm, MPI_Request *request)
|
|
2750
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2751
|
+
int PMPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2752
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2753
|
+
MPI_Request *request)
|
|
2754
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2755
|
+
int PMPI_Iscatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2756
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
|
|
2757
|
+
MPI_Request *request)
|
|
2758
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2759
|
+
int PMPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
2760
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2761
|
+
int root, MPI_Comm comm, MPI_Request *request)
|
|
2762
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2763
|
+
int PMPI_Iscatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2764
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2765
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request)
|
|
2766
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2767
|
+
int PMPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2768
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2769
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2770
|
+
int PMPI_Neighbor_allgather_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2771
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2772
|
+
MPI_Comm comm)
|
|
2773
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2774
|
+
int PMPI_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2775
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2776
|
+
MPI_Info info, MPI_Request *request)
|
|
2777
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2778
|
+
int PMPI_Neighbor_allgather_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2779
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2780
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2781
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2782
|
+
int PMPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2783
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2784
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2785
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2786
|
+
int PMPI_Neighbor_allgatherv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2787
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint displs[],
|
|
2788
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2789
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2790
|
+
int PMPI_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2791
|
+
void *recvbuf, const int recvcounts[], const int displs[],
|
|
2792
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2793
|
+
MPI_Request *request)
|
|
2794
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2795
|
+
int PMPI_Neighbor_allgatherv_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2796
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2797
|
+
const MPI_Aint displs[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2798
|
+
MPI_Info info, MPI_Request *request)
|
|
2799
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,7) MPICH_API_PUBLIC;
|
|
2800
|
+
int PMPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2801
|
+
int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
|
|
2802
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2803
|
+
int PMPI_Neighbor_alltoall_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2804
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2805
|
+
MPI_Comm comm)
|
|
2806
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2807
|
+
int PMPI_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
2808
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm,
|
|
2809
|
+
MPI_Info info, MPI_Request *request)
|
|
2810
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2811
|
+
int PMPI_Neighbor_alltoall_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2812
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
2813
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2814
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2815
|
+
int PMPI_Neighbor_alltoallv(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2816
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2817
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm)
|
|
2818
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2819
|
+
int PMPI_Neighbor_alltoallv_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2820
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2821
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2822
|
+
MPI_Datatype recvtype, MPI_Comm comm)
|
|
2823
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2824
|
+
int PMPI_Neighbor_alltoallv_init(const void *sendbuf, const int sendcounts[], const int sdispls[],
|
|
2825
|
+
MPI_Datatype sendtype, void *recvbuf, const int recvcounts[],
|
|
2826
|
+
const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm,
|
|
2827
|
+
MPI_Info info, MPI_Request *request)
|
|
2828
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2829
|
+
int PMPI_Neighbor_alltoallv_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2830
|
+
const MPI_Aint sdispls[], MPI_Datatype sendtype, void *recvbuf,
|
|
2831
|
+
const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2832
|
+
MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info,
|
|
2833
|
+
MPI_Request *request)
|
|
2834
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,8) MPICH_API_PUBLIC;
|
|
2835
|
+
int PMPI_Neighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
|
|
2836
|
+
const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
|
|
2837
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2838
|
+
MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2839
|
+
int PMPI_Neighbor_alltoallw_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2840
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2841
|
+
void *recvbuf, const MPI_Count recvcounts[], const MPI_Aint rdispls[],
|
|
2842
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm) MPICH_API_PUBLIC;
|
|
2843
|
+
int PMPI_Neighbor_alltoallw_init(const void *sendbuf, const int sendcounts[],
|
|
2844
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2845
|
+
void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
|
|
2846
|
+
const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Info info,
|
|
2847
|
+
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2848
|
+
int PMPI_Neighbor_alltoallw_init_c(const void *sendbuf, const MPI_Count sendcounts[],
|
|
2849
|
+
const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
|
|
2850
|
+
void *recvbuf, const MPI_Count recvcounts[],
|
|
2851
|
+
const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
|
|
2852
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2853
|
+
MPICH_API_PUBLIC;
|
|
2854
|
+
int PMPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2855
|
+
int root, MPI_Comm comm)
|
|
2856
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2857
|
+
int PMPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2858
|
+
MPI_Op op, int root, MPI_Comm comm)
|
|
2859
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2860
|
+
int PMPI_Reduce_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
|
|
2861
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2862
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2863
|
+
int PMPI_Reduce_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2864
|
+
MPI_Op op, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2865
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2866
|
+
int PMPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype,
|
|
2867
|
+
MPI_Op op)
|
|
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;
|
|
2872
|
+
int PMPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
2873
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2874
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2875
|
+
int PMPI_Reduce_scatter_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2876
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2877
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2878
|
+
int PMPI_Reduce_scatter_block(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2879
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2880
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2881
|
+
int PMPI_Reduce_scatter_block_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2882
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
|
|
2883
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2884
|
+
int PMPI_Reduce_scatter_block_init(const void *sendbuf, void *recvbuf, int recvcount,
|
|
2885
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2886
|
+
MPI_Request *request)
|
|
2887
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2888
|
+
int PMPI_Reduce_scatter_block_init_c(const void *sendbuf, void *recvbuf, MPI_Count recvcount,
|
|
2889
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2890
|
+
MPI_Request *request)
|
|
2891
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2892
|
+
int PMPI_Reduce_scatter_init(const void *sendbuf, void *recvbuf, const int recvcounts[],
|
|
2893
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2894
|
+
MPI_Request *request)
|
|
2895
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2896
|
+
int PMPI_Reduce_scatter_init_c(const void *sendbuf, void *recvbuf, const MPI_Count recvcounts[],
|
|
2897
|
+
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Info info,
|
|
2898
|
+
MPI_Request *request)
|
|
2899
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2900
|
+
int PMPI_Scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2901
|
+
MPI_Comm comm)
|
|
2902
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2903
|
+
int PMPI_Scan_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2904
|
+
MPI_Op op, MPI_Comm comm)
|
|
2905
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2906
|
+
int PMPI_Scan_init(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op,
|
|
2907
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2908
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2909
|
+
int PMPI_Scan_init_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
|
|
2910
|
+
MPI_Op op, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2911
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) MPICH_API_PUBLIC;
|
|
2912
|
+
int PMPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2913
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2914
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2422
2915
|
int PMPI_Scatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2916
|
+
MPI_Count recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2917
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2918
|
+
int PMPI_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
|
|
2919
|
+
int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2920
|
+
MPI_Request *request)
|
|
2921
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2922
|
+
int PMPI_Scatter_init_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype,
|
|
2923
|
+
void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype, int root,
|
|
2924
|
+
MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2925
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(4,6) MPICH_API_PUBLIC;
|
|
2926
|
+
int PMPI_Scatterv(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
2927
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2928
|
+
int root, MPI_Comm comm)
|
|
2929
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2930
|
+
int PMPI_Scatterv_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2931
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2932
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm)
|
|
2933
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2934
|
+
int PMPI_Scatterv_init(const void *sendbuf, const int sendcounts[], const int displs[],
|
|
2935
|
+
MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
2936
|
+
int root, MPI_Comm comm, MPI_Info info, MPI_Request *request)
|
|
2937
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
2938
|
+
int PMPI_Scatterv_init_c(const void *sendbuf, const MPI_Count sendcounts[], const MPI_Aint displs[],
|
|
2939
|
+
MPI_Datatype sendtype, void *recvbuf, MPI_Count recvcount,
|
|
2940
|
+
MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info,
|
|
2941
|
+
MPI_Request *request)
|
|
2942
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,4) MPICH_ATTR_POINTER_WITH_TYPE_TAG(5,7) MPICH_API_PUBLIC;
|
|
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;
|
|
3194
|
+
int PMPI_Bsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
3195
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3196
|
+
int PMPI_Bsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3197
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3198
|
+
int PMPI_Bsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
3199
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3200
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3201
|
+
int PMPI_Bsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3202
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3203
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3204
|
+
int PMPI_Buffer_attach(void *buffer, int size) MPICH_API_PUBLIC;
|
|
3205
|
+
int PMPI_Buffer_attach_c(void *buffer, MPI_Count size) MPICH_API_PUBLIC;
|
|
3206
|
+
int PMPI_Buffer_detach(void *buffer_addr, int *size) MPICH_API_PUBLIC;
|
|
3207
|
+
int PMPI_Buffer_detach_c(void *buffer_addr, MPI_Count *size) MPICH_API_PUBLIC;
|
|
3208
|
+
int PMPI_Ibsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
3209
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3210
|
+
int PMPI_Ibsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3211
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3212
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3213
|
+
int PMPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message,
|
|
3214
|
+
MPI_Status *status) MPICH_API_PUBLIC;
|
|
3215
|
+
int PMPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
3216
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3217
|
+
int PMPI_Imrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
3218
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3219
|
+
int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status)
|
|
3220
|
+
MPICH_API_PUBLIC;
|
|
3221
|
+
int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm,
|
|
3222
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3223
|
+
int PMPI_Irecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
3224
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3225
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3226
|
+
int PMPI_Irsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
3227
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3228
|
+
int PMPI_Irsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3229
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3230
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3231
|
+
int PMPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
3232
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3233
|
+
int PMPI_Isend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3234
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3235
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3236
|
+
int PMPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm,
|
|
3237
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3238
|
+
int PMPI_Issend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3239
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3240
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3241
|
+
int PMPI_Mprobe(int source, int tag, MPI_Comm comm, MPI_Message *message, MPI_Status *status)
|
|
3242
|
+
MPICH_API_PUBLIC;
|
|
3243
|
+
int PMPI_Mrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message,
|
|
3244
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3245
|
+
int PMPI_Mrecv_c(void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Message *message,
|
|
3246
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3247
|
+
int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status) MPICH_API_PUBLIC;
|
|
3248
|
+
int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm,
|
|
3249
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3250
|
+
int PMPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
3251
|
+
MPI_Comm comm, MPI_Status *status)
|
|
3252
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3253
|
+
int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm,
|
|
3254
|
+
MPI_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3255
|
+
int PMPI_Recv_init_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source, int tag,
|
|
3256
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3257
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3258
|
+
int PMPI_Rsend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
3259
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3260
|
+
int PMPI_Rsend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3261
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3262
|
+
int PMPI_Rsend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
3263
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3264
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3265
|
+
int PMPI_Rsend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3266
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3267
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3268
|
+
int PMPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
3269
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3270
|
+
int PMPI_Send_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3271
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3272
|
+
int PMPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
3273
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3274
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3275
|
+
int PMPI_Send_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3276
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3277
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3278
|
+
int PMPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag,
|
|
3279
|
+
void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag,
|
|
3280
|
+
MPI_Comm comm, MPI_Status *status)
|
|
3281
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
3282
|
+
int PMPI_Sendrecv_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendtype, int dest,
|
|
3283
|
+
int sendtag, void *recvbuf, MPI_Count recvcount, MPI_Datatype recvtype,
|
|
3284
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
3285
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_ATTR_POINTER_WITH_TYPE_TAG(6,8) MPICH_API_PUBLIC;
|
|
3286
|
+
int PMPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int dest, int sendtag,
|
|
3287
|
+
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
|
|
3288
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3289
|
+
int PMPI_Sendrecv_replace_c(void *buf, MPI_Count count, MPI_Datatype datatype, int dest,
|
|
3290
|
+
int sendtag, int source, int recvtag, MPI_Comm comm,
|
|
3291
|
+
MPI_Status *status)
|
|
3292
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3293
|
+
int PMPI_Ssend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
|
|
3294
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3295
|
+
int PMPI_Ssend_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3296
|
+
MPI_Comm comm) MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3297
|
+
int PMPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,
|
|
3298
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3299
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
3300
|
+
int PMPI_Ssend_init_c(const void *buf, MPI_Count count, MPI_Datatype datatype, int dest, int tag,
|
|
3301
|
+
MPI_Comm comm, MPI_Request *request)
|
|
3302
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
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)
|
|
3336
|
+
MPICH_API_PUBLIC;
|
|
3337
|
+
int PMPI_Waitany(int count, MPI_Request array_of_requests[], int *indx, MPI_Status *status)
|
|
3338
|
+
MPICH_API_PUBLIC;
|
|
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
|
+
int PMPI_Get_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3373
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3374
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
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;
|
|
3381
|
+
int PMPI_Get_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3382
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
3383
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
3384
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
3385
|
+
MPI_Win win)
|
|
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;
|
|
3390
|
+
int PMPI_Put_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3391
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3392
|
+
MPI_Datatype target_datatype, MPI_Win win)
|
|
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;
|
|
3398
|
+
int PMPI_Raccumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3399
|
+
MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp,
|
|
3400
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win,
|
|
3401
|
+
MPI_Request *request)
|
|
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;
|
|
3406
|
+
int PMPI_Rget_c(void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3407
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3408
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
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;
|
|
3416
|
+
int PMPI_Rget_accumulate_c(const void *origin_addr, MPI_Count origin_count,
|
|
3417
|
+
MPI_Datatype origin_datatype, void *result_addr, MPI_Count result_count,
|
|
3418
|
+
MPI_Datatype result_datatype, int target_rank, MPI_Aint target_disp,
|
|
3419
|
+
MPI_Count target_count, MPI_Datatype target_datatype, MPI_Op op,
|
|
3420
|
+
MPI_Win win, MPI_Request *request)
|
|
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;
|
|
3426
|
+
int PMPI_Rput_c(const void *origin_addr, MPI_Count origin_count, MPI_Datatype origin_datatype,
|
|
3427
|
+
int target_rank, MPI_Aint target_disp, MPI_Count target_count,
|
|
3428
|
+
MPI_Datatype target_datatype, MPI_Win win, MPI_Request *request)
|
|
3429
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(1,3) MPICH_API_PUBLIC;
|
|
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 */
|
|
2426
3513
|
|
|
2427
|
-
#endif /* MPI_BUILD_PROFILING */
|
|
2428
3514
|
/* End of MPI bindings */
|
|
3515
|
+
/* End Prototypes */
|
|
2429
3516
|
|
|
2430
3517
|
/* feature advertisement */
|
|
2431
3518
|
#define MPIIMPL_ADVERTISES_FEATURES 1
|
|
@@ -2441,6 +3528,10 @@ int PMPI_Scatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendty
|
|
|
2441
3528
|
|
|
2442
3529
|
#include "mpio.h"
|
|
2443
3530
|
|
|
3531
|
+
/* GPU extensions */
|
|
3532
|
+
#define MPIX_GPU_SUPPORT_CUDA (0)
|
|
3533
|
+
#define MPIX_GPU_SUPPORT_ZE (1)
|
|
3534
|
+
#define MPIX_GPU_SUPPORT_DEVICE_INITIATED (3)
|
|
2444
3535
|
#if defined(__cplusplus)
|
|
2445
3536
|
}
|
|
2446
3537
|
/* Add the C++ bindings */
|
|
@@ -2459,40 +3550,4 @@ int PMPI_Scatter_c(const void *sendbuf, MPI_Count sendcount, MPI_Datatype sendty
|
|
|
2459
3550
|
#endif
|
|
2460
3551
|
#endif
|
|
2461
3552
|
|
|
2462
|
-
|
|
2463
|
-
/* Generalized requests extensions */
|
|
2464
|
-
typedef int MPIX_Grequest_class;
|
|
2465
|
-
int MPIX_Grequest_class_create(MPI_Grequest_query_function *query_fn,
|
|
2466
|
-
MPI_Grequest_free_function *free_fn,
|
|
2467
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
2468
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
2469
|
-
MPIX_Grequest_wait_function *wait_fn,
|
|
2470
|
-
MPIX_Grequest_class *greq_class) MPICH_API_PUBLIC;
|
|
2471
|
-
int MPIX_Grequest_class_allocate(MPIX_Grequest_class greq_class, void *extra_state,
|
|
2472
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2473
|
-
int MPIX_Grequest_start(MPI_Grequest_query_function *query_fn,
|
|
2474
|
-
MPI_Grequest_free_function *free_fn,
|
|
2475
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
2476
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
2477
|
-
MPIX_Grequest_wait_function *wait_fn, void *extra_state,
|
|
2478
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2479
|
-
|
|
2480
|
-
#if !defined(MPI_BUILD_PROFILING)
|
|
2481
|
-
/* Generalized requests extensions */
|
|
2482
|
-
int PMPIX_Grequest_class_create(MPI_Grequest_query_function *query_fn,
|
|
2483
|
-
MPI_Grequest_free_function *free_fn,
|
|
2484
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
2485
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
2486
|
-
MPIX_Grequest_wait_function *wait_fn,
|
|
2487
|
-
MPIX_Grequest_class *greq_class) MPICH_API_PUBLIC;
|
|
2488
|
-
int PMPIX_Grequest_class_allocate(MPIX_Grequest_class greq_class, void *extra_state,
|
|
2489
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2490
|
-
int PMPIX_Grequest_start(MPI_Grequest_query_function *query_fn,
|
|
2491
|
-
MPI_Grequest_free_function *free_fn,
|
|
2492
|
-
MPI_Grequest_cancel_function *cancel_fn,
|
|
2493
|
-
MPIX_Grequest_poll_function *poll_fn,
|
|
2494
|
-
MPIX_Grequest_wait_function *wait_fn, void *extra_state,
|
|
2495
|
-
MPI_Request *request) MPICH_API_PUBLIC;
|
|
2496
|
-
#endif /* MPI_BUILD_PROFILING */
|
|
2497
|
-
|
|
2498
3553
|
#endif
|