@@ -1418,8 +1418,10 @@ OMPI_DECLSPEC int MPI_Alloc_mem(MPI_Aint size, MPI_Info info,
1418
1418
void * baseptr );
1419
1419
OMPI_DECLSPEC int MPI_Allreduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
1420
1420
MPI_Op op , MPI_Comm comm );
1421
+ #ifdef OMPI_BIGCOUNT
1421
1422
OMPI_DECLSPEC int MPI_Allreduce_c (const void * sendbuf , void * recvbuf , MPI_Count count , MPI_Datatype datatype ,
1422
1423
MPI_Op op , MPI_Comm comm );
1424
+ #endif
1423
1425
OMPI_DECLSPEC int MPI_Iallreduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
1424
1426
MPI_Op op , MPI_Comm comm , MPI_Request * request );
1425
1427
OMPI_DECLSPEC int MPI_Allreduce_init (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
@@ -1436,9 +1438,11 @@ OMPI_DECLSPEC int MPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Dat
1436
1438
OMPI_DECLSPEC int MPI_Alltoallv (const void * sendbuf , const int sendcounts [], const int sdispls [], MPI_Datatype sendtype ,
1437
1439
void * recvbuf , const int recvcounts [], const int rdispls [], MPI_Datatype recvtype ,
1438
1440
MPI_Comm comm );
1441
+ #ifdef OMPI_BIGCOUNT
1439
1442
OMPI_DECLSPEC int MPI_Alltoallv_c (const void * sendbuf , const MPI_Count sendcounts [], const MPI_Aint sdispls [], MPI_Datatype sendtype ,
1440
1443
void * recvbuf , const MPI_Count recvcounts [], const MPI_Aint rdispls [], MPI_Datatype recvtype ,
1441
1444
MPI_Comm comm );
1445
+ #endif
1442
1446
OMPI_DECLSPEC int MPI_Ialltoallv (const void * sendbuf , const int sendcounts [], const int sdispls [], MPI_Datatype sendtype ,
1443
1447
void * recvbuf , const int recvcounts [], const int rdispls [], MPI_Datatype recvtype ,
1444
1448
MPI_Comm comm , MPI_Request * request );
@@ -1448,9 +1452,11 @@ OMPI_DECLSPEC int MPI_Alltoallv_init(const void *sendbuf, const int sendcounts[
1448
1452
OMPI_DECLSPEC int MPI_Alltoallw (const void * sendbuf , const int sendcounts [], const int sdispls [], const MPI_Datatype sendtypes [],
1449
1453
void * recvbuf , const int recvcounts [], const int rdispls [], const MPI_Datatype recvtypes [],
1450
1454
MPI_Comm comm );
1455
+ #ifdef OMPI_BIGCOUNT
1451
1456
OMPI_DECLSPEC int MPI_Alltoallw_c (const void * sendbuf , const MPI_Count sendcounts [], const MPI_Aint sdispls [], const MPI_Datatype sendtypes [],
1452
1457
void * recvbuf , const MPI_Count recvcounts [], const MPI_Aint rdispls [], const MPI_Datatype recvtypes [],
1453
1458
MPI_Comm comm );
1459
+ #endif
1454
1460
OMPI_DECLSPEC int MPI_Ialltoallw (const void * sendbuf , const int sendcounts [], const int sdispls [], const MPI_Datatype sendtypes [],
1455
1461
void * recvbuf , const int recvcounts [], const int rdispls [], const MPI_Datatype recvtypes [],
1456
1462
MPI_Comm comm , MPI_Request * request );
@@ -1781,14 +1787,18 @@ OMPI_DECLSPEC int MPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag,
1781
1787
MPI_Status * status );
1782
1788
OMPI_DECLSPEC int MPI_Irecv (void * buf , int count , MPI_Datatype datatype , int source ,
1783
1789
int tag , MPI_Comm comm , MPI_Request * request );
1790
+ #ifdef OMPI_BIGCOUNT
1784
1791
OMPI_DECLSPEC int MPI_Irecv_c (void * buf , MPI_Count count , MPI_Datatype datatype , int source ,
1785
1792
int tag , MPI_Comm comm , MPI_Request * request );
1793
+ #endif
1786
1794
OMPI_DECLSPEC int MPI_Irsend (const void * buf , int count , MPI_Datatype datatype , int dest ,
1787
1795
int tag , MPI_Comm comm , MPI_Request * request );
1788
1796
OMPI_DECLSPEC int MPI_Isend (const void * buf , int count , MPI_Datatype datatype , int dest ,
1789
1797
int tag , MPI_Comm comm , MPI_Request * request );
1798
+ #ifdef OMPI_BIGCOUNT
1790
1799
OMPI_DECLSPEC int MPI_Isend_c (const void * buf , MPI_Count count , MPI_Datatype datatype , int dest ,
1791
1800
int tag , MPI_Comm comm , MPI_Request * request );
1801
+ #endif
1792
1802
OMPI_DECLSPEC int MPI_Isendrecv (const void * sendbuf , int sendcount , MPI_Datatype sendtype ,
1793
1803
int dest , int sendtag , void * recvbuf , int recvcount ,
1794
1804
MPI_Datatype recvtype , int source , int recvtag ,
@@ -1893,8 +1903,10 @@ OMPI_DECLSPEC int MPI_Recv_init(void *buf, int count, MPI_Datatype datatype, in
1893
1903
int tag , MPI_Comm comm , MPI_Request * request );
1894
1904
OMPI_DECLSPEC int MPI_Recv (void * buf , int count , MPI_Datatype datatype , int source ,
1895
1905
int tag , MPI_Comm comm , MPI_Status * status );
1906
+ #ifdef OMPI_BIGCOUNT
1896
1907
OMPI_DECLSPEC int MPI_Recv_c (void * buf , MPI_Count count , MPI_Datatype datatype , int source ,
1897
1908
int tag , MPI_Comm comm , MPI_Status * status );
1909
+ #endif
1898
1910
OMPI_DECLSPEC int MPI_Reduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
1899
1911
MPI_Op op , int root , MPI_Comm comm );
1900
1912
OMPI_DECLSPEC int MPI_Ireduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
@@ -1943,8 +1955,10 @@ OMPI_DECLSPEC int MPI_Rsend_init(const void *buf, int count, MPI_Datatype datat
1943
1955
MPI_Request * request );
1944
1956
OMPI_DECLSPEC int MPI_Scan (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
1945
1957
MPI_Op op , MPI_Comm comm );
1958
+ #ifdef OMPI_BIGCOUNT
1946
1959
OMPI_DECLSPEC int MPI_Scan_c (const void * sendbuf , void * recvbuf , MPI_Count count , MPI_Datatype datatype ,
1947
1960
MPI_Op op , MPI_Comm comm );
1961
+ #endif
1948
1962
OMPI_DECLSPEC int MPI_Iscan (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
1949
1963
MPI_Op op , MPI_Comm comm , MPI_Request * request );
1950
1964
OMPI_DECLSPEC int MPI_Scan_init (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
@@ -1972,8 +1986,10 @@ OMPI_DECLSPEC int MPI_Send_init(const void *buf, int count, MPI_Datatype dataty
1972
1986
MPI_Request * request );
1973
1987
OMPI_DECLSPEC int MPI_Send (const void * buf , int count , MPI_Datatype datatype , int dest ,
1974
1988
int tag , MPI_Comm comm );
1989
+ #ifdef OMPI_BIGCOUNT
1975
1990
OMPI_DECLSPEC int MPI_Send_c (const void * buf , MPI_Count count , MPI_Datatype datatype , int dest ,
1976
1991
int tag , MPI_Comm comm );
1992
+ #endif
1977
1993
OMPI_DECLSPEC int MPI_Sendrecv (const void * sendbuf , int sendcount , MPI_Datatype sendtype ,
1978
1994
int dest , int sendtag , void * recvbuf , int recvcount ,
1979
1995
MPI_Datatype recvtype , int source , int recvtag ,
@@ -2170,9 +2186,11 @@ OMPI_DECLSPEC int PMPI_Abort(MPI_Comm comm, int errorcode);
2170
2186
OMPI_DECLSPEC int PMPI_Accumulate (const void * origin_addr , int origin_count , MPI_Datatype origin_datatype ,
2171
2187
int target_rank , MPI_Aint target_disp , int target_count ,
2172
2188
MPI_Datatype target_datatype , MPI_Op op , MPI_Win win );
2189
+ #ifdef OMPI_BIGCOUNT
2173
2190
OMPI_DECLSPEC int PMPI_Accumulate_c (const void * origin_addr , MPI_Count origin_count , MPI_Datatype origin_datatype ,
2174
2191
int target_rank , MPI_Aint target_disp , MPI_Count target_count ,
2175
2192
MPI_Datatype target_datatype , MPI_Op op , MPI_Win win );
2193
+ #endif
2176
2194
OMPI_DECLSPEC int PMPI_Add_error_class (int * errorclass );
2177
2195
OMPI_DECLSPEC int PMPI_Add_error_code (int errorclass , int * errorcode );
2178
2196
OMPI_DECLSPEC int PMPI_Add_error_string (int errorcode , const char * string );
@@ -2198,8 +2216,10 @@ OMPI_DECLSPEC int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info,
2198
2216
void * baseptr );
2199
2217
OMPI_DECLSPEC int PMPI_Allreduce (const void * sendbuf , void * recvbuf , int count ,
2200
2218
MPI_Datatype datatype , MPI_Op op , MPI_Comm comm );
2219
+ #ifdef OMPI_BIGCOUNT
2201
2220
OMPI_DECLSPEC int PMPI_Allreduce_c (const void * sendbuf , void * recvbuf , MPI_Count count ,
2202
2221
MPI_Datatype datatype , MPI_Op op , MPI_Comm comm );
2222
+ #endif
2203
2223
OMPI_DECLSPEC int PMPI_Iallreduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
2204
2224
MPI_Op op , MPI_Comm comm , MPI_Request * request );
2205
2225
OMPI_DECLSPEC int PMPI_Allreduce_init (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
@@ -2216,9 +2236,11 @@ OMPI_DECLSPEC int PMPI_Alltoall_init(const void *sendbuf, int sendcount, MPI_Da
2216
2236
OMPI_DECLSPEC int PMPI_Alltoallv (const void * sendbuf , const int sendcounts [], const int sdispls [], MPI_Datatype sendtype ,
2217
2237
void * recvbuf , const int recvcounts [], const int rdispls [], MPI_Datatype recvtype ,
2218
2238
MPI_Comm comm );
2239
+ #ifdef OMPI_BIGCOUNT
2219
2240
OMPI_DECLSPEC int PMPI_Alltoallv_c (const void * sendbuf , const MPI_Count sendcounts [], const MPI_Aint sdispls [], MPI_Datatype sendtype ,
2220
2241
void * recvbuf , const MPI_Count recvcounts [], const MPI_Aint rdispls [], MPI_Datatype recvtype ,
2221
2242
MPI_Comm comm );
2243
+ #endif
2222
2244
OMPI_DECLSPEC int PMPI_Ialltoallv (const void * sendbuf , const int sendcounts [], const int sdispls [], MPI_Datatype sendtype ,
2223
2245
void * recvbuf , const int recvcounts [], const int rdispls [], MPI_Datatype recvtype ,
2224
2246
MPI_Comm comm , MPI_Request * request );
@@ -2228,9 +2250,11 @@ OMPI_DECLSPEC int PMPI_Alltoallv_init(const void *sendbuf, const int sendcounts
2228
2250
OMPI_DECLSPEC int PMPI_Alltoallw (const void * sendbuf , const int sendcounts [], const int sdispls [], const MPI_Datatype sendtypes [],
2229
2251
void * recvbuf , const int recvcounts [], const int rdispls [], const MPI_Datatype recvtypes [],
2230
2252
MPI_Comm comm );
2253
+ #ifdef OMPI_BIGCOUNT
2231
2254
OMPI_DECLSPEC int PMPI_Alltoallw_c (const void * sendbuf , const MPI_Count sendcounts [], const MPI_Aint sdispls [], const MPI_Datatype sendtypes [],
2232
2255
void * recvbuf , const MPI_Count recvcounts [], const MPI_Aint rdispls [], const MPI_Datatype recvtypes [],
2233
2256
MPI_Comm comm );
2257
+ #endif
2234
2258
OMPI_DECLSPEC int PMPI_Ialltoallw (const void * sendbuf , const int sendcounts [], const int sdispls [], const MPI_Datatype sendtypes [],
2235
2259
void * recvbuf , const int recvcounts [], const int rdispls [], const MPI_Datatype recvtypes [],
2236
2260
MPI_Comm comm , MPI_Request * request );
@@ -2563,14 +2587,18 @@ OMPI_DECLSPEC int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag,
2563
2587
MPI_Status * status );
2564
2588
OMPI_DECLSPEC int PMPI_Irecv (void * buf , int count , MPI_Datatype datatype , int source ,
2565
2589
int tag , MPI_Comm comm , MPI_Request * request );
2590
+ #ifdef OMPI_BIGCOUNT
2566
2591
OMPI_DECLSPEC int PMPI_Irecv_c (void * buf , MPI_Count count , MPI_Datatype datatype , int source ,
2567
2592
int tag , MPI_Comm comm , MPI_Request * request );
2593
+ #endif
2568
2594
OMPI_DECLSPEC int PMPI_Irsend (const void * buf , int count , MPI_Datatype datatype , int dest ,
2569
2595
int tag , MPI_Comm comm , MPI_Request * request );
2570
2596
OMPI_DECLSPEC int PMPI_Isend (const void * buf , int count , MPI_Datatype datatype , int dest ,
2571
2597
int tag , MPI_Comm comm , MPI_Request * request );
2598
+ #ifdef OMPI_BIGCOUNT
2572
2599
OMPI_DECLSPEC int PMPI_Isend_c (const void * buf , MPI_Count count , MPI_Datatype datatype , int dest ,
2573
2600
int tag , MPI_Comm comm , MPI_Request * request );
2601
+ #endif
2574
2602
OMPI_DECLSPEC int PMPI_Isendrecv (const void * sendbuf , int sendcount , MPI_Datatype sendtype ,
2575
2603
int dest , int sendtag , void * recvbuf , int recvcount ,
2576
2604
MPI_Datatype recvtype , int source , int recvtag ,
@@ -2675,8 +2703,10 @@ OMPI_DECLSPEC int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, i
2675
2703
int tag , MPI_Comm comm , MPI_Request * request );
2676
2704
OMPI_DECLSPEC int PMPI_Recv (void * buf , int count , MPI_Datatype datatype , int source ,
2677
2705
int tag , MPI_Comm comm , MPI_Status * status );
2706
+ #ifdef OMPI_BIGCOUNT
2678
2707
OMPI_DECLSPEC int PMPI_Recv_c (void * buf , MPI_Count count , MPI_Datatype datatype , int source ,
2679
2708
int tag , MPI_Comm comm , MPI_Status * status );
2709
+ #endif
2680
2710
OMPI_DECLSPEC int PMPI_Reduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
2681
2711
MPI_Op op , int root , MPI_Comm comm );
2682
2712
OMPI_DECLSPEC int PMPI_Ireduce (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
@@ -2725,8 +2755,10 @@ OMPI_DECLSPEC int PMPI_Rsend_init(const void *buf, int count, MPI_Datatype data
2725
2755
MPI_Request * request );
2726
2756
OMPI_DECLSPEC int PMPI_Scan (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
2727
2757
MPI_Op op , MPI_Comm comm );
2758
+ #ifdef OMPI_BIGCOUNT
2728
2759
OMPI_DECLSPEC int PMPI_Scan_c (const void * sendbuf , void * recvbuf , MPI_Count count , MPI_Datatype datatype ,
2729
2760
MPI_Op op , MPI_Comm comm );
2761
+ #endif
2730
2762
OMPI_DECLSPEC int PMPI_Iscan (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
2731
2763
MPI_Op op , MPI_Comm comm , MPI_Request * request );
2732
2764
OMPI_DECLSPEC int PMPI_Scan_init (const void * sendbuf , void * recvbuf , int count , MPI_Datatype datatype ,
@@ -2754,8 +2786,10 @@ OMPI_DECLSPEC int PMPI_Send_init(const void *buf, int count, MPI_Datatype datat
2754
2786
MPI_Request * request );
2755
2787
OMPI_DECLSPEC int PMPI_Send (const void * buf , int count , MPI_Datatype datatype , int dest ,
2756
2788
int tag , MPI_Comm comm );
2789
+ #ifdef OMPI_BIGCOUNT
2757
2790
OMPI_DECLSPEC int PMPI_Send_c (const void * buf , MPI_Count count , MPI_Datatype datatype , int dest ,
2758
2791
int tag , MPI_Comm comm );
2792
+ #endif
2759
2793
OMPI_DECLSPEC int PMPI_Sendrecv (const void * sendbuf , int sendcount , MPI_Datatype sendtype ,
2760
2794
int dest , int sendtag , void * recvbuf , int recvcount ,
2761
2795
MPI_Datatype recvtype , int source , int recvtag ,
0 commit comments