-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmpiname.h
executable file
·129 lines (129 loc) · 2.35 KB
/
mpiname.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
char *MPI_Functions[] = {
"MPI_Init",
"MPI_Init_thread",
"MPI_Finalize",
"MPI_Bsend",
"MPI_Bsend_init",
"MPI_Recv_init",
"MPI_Send_init",
"MPI_Ibsend",
"MPI_Irecv",
"MPI_Irsend",
"MPI_Isend",
"MPI_Issend",
"MPI_Recv",
"MPI_Rsend",
"MPI_Rsend_init",
"MPI_Send",
"MPI_Sendrecv",
"MPI_Sendrecv_replace",
"MPI_Ssend",
"MPI_Ssend_init",
"MPI_Test",
"MPI_Testall",
"MPI_Testany",
"MPI_Test_cancelled",
"MPI_Testsome",
"MPI_Wait",
"MPI_Waitall",
"MPI_Waitany",
"MPI_Waitsome",
"MPI_Cancel",
"MPI_Request_free",
"MPI_Start",
"MPI_Startall",
"MPI_Iprobe",
"MPI_Probe",
"MPI_Allgather",
"MPI_Allgatherv",
"MPI_Allreduce",
"MPI_Alltoall",
"MPI_Alltoallv",
"MPI_Barrier",
"MPI_Bcast",
"MPI_Gather",
"MPI_Gatherv",
"MPI_Reduce_scatter",
"MPI_Reduce",
"MPI_Scan",
"MPI_Scatter",
"MPI_Scatterv",
"MPI_Comm_compare",
"MPI_Comm_create",
"MPI_Comm_dup",
"MPI_Comm_free",
"MPI_Comm_group",
"MPI_Comm_rank",
"MPI_Comm_remote_group",
"MPI_Comm_remote_size",
"MPI_Comm_size",
"MPI_Comm_split",
"MPI_Comm_test_inter",
"MPI_Group_compare",
"MPI_Group_difference",
"MPI_Group_excl",
"MPI_Group_free",
"MPI_Group_incl",
"MPI_Group_intersection",
"MPI_Group_rank",
"MPI_Group_range_excl",
"MPI_Group_range_incl",
"MPI_Group_size",
"MPI_Group_translate_ranks",
"MPI_Group_union",
"MPI_Intercomm_create",
"MPI_Intercomm_merge",
"MPI_Keyval_create",
"MPI_Keyval_free",
"MPI_Cart_coords",
"MPI_Cart_create",
"MPI_Cart_get",
"MPI_Cart_map",
"MPI_Cart_rank",
"MPI_Cart_shift",
"MPI_Cart_sub",
"MPI_Cartdim_get",
"MPI_Dims_create",
"MPI_Graph_create",
"MPI_Graph_get",
"MPI_Graph_map",
"MPI_Graph_neighbors",
"MPI_Graph_neighbors_count",
"MPI_Graphdims_get",
"MPI_Topo_test",
"MPI_Abort",
"MPI_Error_class",
"MPI_Errhandler_create",
"MPI_Errhandler_free",
"MPI_Errhandler_get",
"MPI_Error_string",
"MPI_Errhandler_set",
"MPI_Get_processor_name",
"MPI_Wtick",
"MPI_Wtime",
"MPI_Address",
"MPI_Op_create",
"MPI_Op_free",
"MPI_Attr_delete",
"MPI_Attr_get",
"MPI_Attr_put",
"MPI_Buffer_attach",
"MPI_Buffer_detach",
"MPI_Get_elements",
"MPI_Get_count",
"MPI_Type_commit",
"MPI_Type_contiguous",
"MPI_Type_extent",
"MPI_Type_free",
"MPI_Type_hindexed",
"MPI_Type_hvector",
"MPI_Type_indexed",
"MPI_Type_lb",
"MPI_Type_size",
"MPI_Type_struct",
"MPI_Type_ub",
"MPI_Type_vector",
"MPI_Unpack",
"MPI_Pack",
"MPI_Pack_size"
};