Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
770d81685877979454c02b08a2aa8b2bb8e53283
[simgrid.git] / src / smpi / private.h
1 /* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5   * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SMPI_PRIVATE_H
8 #define SMPI_PRIVATE_H
9
10 #include "xbt.h"
11 #include "xbt/xbt_os_time.h"
12 #include "simgrid/simix.h"
13 #include "smpi/smpi.h"
14 #include "smpi/smpif.h"
15 #include "smpi/smpi_cocci.h"
16 #include "instr/instr_private.h"
17
18 struct s_smpi_process_data;
19 typedef struct s_smpi_process_data *smpi_process_data_t;
20
21 #define PERSISTENT     0x1
22 #define NON_PERSISTENT 0x2
23 #define SEND           0x4
24 #define RECV           0x8
25
26
27 // this struct is here to handle the problem of non-contignous data
28 // for each such structure these function should be implemented (vector
29 // index hvector hindex struct)
30 typedef struct s_smpi_subtype{
31   void (*serialize)(const void * input, void *output, size_t count, void* subtype);
32   void (*unserialize)(const void * input, void *output, size_t count, void* subtype);
33   void (*subtype_free)(MPI_Datatype* type);
34 } s_smpi_subtype_t;
35
36 typedef struct s_smpi_mpi_datatype{
37   size_t size;
38   /* this let us know if a serialization is required*/
39   size_t has_subtype;
40   MPI_Aint lb;
41   MPI_Aint ub;
42   int flags;
43   /* this let us know how to serialize and unserialize*/
44   void *substruct;
45 } s_smpi_mpi_datatype_t;
46
47 //*****************************************************************************************
48
49 typedef struct s_smpi_mpi_request {
50   void *buf;
51   /* in the case of non-contignous memory the user address shoud be keep
52    * to unserialize the data inside the user memory*/
53   void *old_buf;
54   /* this let us know how tounserialize at the end of
55    * the communication*/
56   MPI_Datatype old_type;
57   size_t size;
58   int src;
59   int dst;
60   int tag;
61   MPI_Comm comm;
62   smx_action_t action;
63   unsigned flags;
64   int detached;
65 #ifdef HAVE_TRACING
66   int send;
67   int recv;
68 #endif
69 } s_smpi_mpi_request_t;
70
71 void smpi_process_init(int *argc, char ***argv);
72 void smpi_process_destroy(void);
73 void smpi_process_finalize(void);
74
75 smpi_process_data_t smpi_process_data(void);
76 smpi_process_data_t smpi_process_remote_data(int index);
77 void smpi_process_set_user_data(void *);
78 void* smpi_process_get_user_data(void);
79 int smpi_process_count(void);
80 smx_rdv_t smpi_process_mailbox(void);
81 smx_rdv_t smpi_process_remote_mailbox(int index);
82 smx_rdv_t smpi_process_mailbox_small(void);
83 smx_rdv_t smpi_process_remote_mailbox_small(int index);
84 xbt_os_timer_t smpi_process_timer(void);
85 void smpi_process_simulated_start(void);
86 double smpi_process_simulated_elapsed(void);
87
88 void print_request(const char *message, MPI_Request request);
89
90 void smpi_global_init(void);
91 void smpi_global_destroy(void);
92
93 size_t smpi_datatype_size(MPI_Datatype datatype);
94 MPI_Aint smpi_datatype_lb(MPI_Datatype datatype);
95 MPI_Aint smpi_datatype_ub(MPI_Datatype datatype);
96 int smpi_datatype_extent(MPI_Datatype datatype, MPI_Aint * lb,
97                          MPI_Aint * extent);
98 int smpi_datatype_copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
99                        void *recvbuf, int recvcount,
100                        MPI_Datatype recvtype);
101 int smpi_datatype_contiguous(int count, MPI_Datatype old_type,
102                        MPI_Datatype* new_type);
103 int smpi_datatype_vector(int count, int blocklen, int stride,
104                       MPI_Datatype old_type, MPI_Datatype* new_type);
105
106 int smpi_datatype_hvector(int count, int blocklen, MPI_Aint stride,
107                       MPI_Datatype old_type, MPI_Datatype* new_type);
108 int smpi_datatype_indexed(int count, int* blocklens, int* indices,
109                      MPI_Datatype old_type, MPI_Datatype* new_type);
110 int smpi_datatype_hindexed(int count, int* blocklens, MPI_Aint* indices,
111                      MPI_Datatype old_type, MPI_Datatype* new_type);
112 int smpi_datatype_struct(int count, int* blocklens, MPI_Aint* indices,
113                     MPI_Datatype* old_types, MPI_Datatype* new_type);
114
115 void smpi_datatype_create(MPI_Datatype* new_type, int size,int realsize, int has_subtype, void *struct_type, int flags);
116
117
118 void smpi_datatype_free(MPI_Datatype* type);
119 void smpi_datatype_commit(MPI_Datatype* datatype);
120
121 void smpi_empty_status(MPI_Status * status);
122 MPI_Op smpi_op_new(MPI_User_function * function, int commute);
123 void smpi_op_destroy(MPI_Op op);
124 void smpi_op_apply(MPI_Op op, void *invec, void *inoutvec, int *len,
125                    MPI_Datatype * datatype);
126
127 MPI_Group smpi_group_new(int size);
128 void smpi_group_destroy(MPI_Group group);
129 void smpi_group_set_mapping(MPI_Group group, int index, int rank);
130 int smpi_group_index(MPI_Group group, int rank);
131 int smpi_group_rank(MPI_Group group, int index);
132 int smpi_group_use(MPI_Group group);
133 int smpi_group_unuse(MPI_Group group);
134 int smpi_group_size(MPI_Group group);
135 int smpi_group_compare(MPI_Group group1, MPI_Group group2);
136
137 MPI_Comm smpi_comm_new(MPI_Group group);
138 void smpi_comm_destroy(MPI_Comm comm);
139 MPI_Group smpi_comm_group(MPI_Comm comm);
140 int smpi_comm_size(MPI_Comm comm);
141 void smpi_comm_get_name(MPI_Comm comm, char* name, int* len);
142 int smpi_comm_rank(MPI_Comm comm);
143 MPI_Comm smpi_comm_split(MPI_Comm comm, int color, int key);
144
145 MPI_Request smpi_mpi_send_init(void *buf, int count, MPI_Datatype datatype,
146                                int dst, int tag, MPI_Comm comm);
147 MPI_Request smpi_mpi_recv_init(void *buf, int count, MPI_Datatype datatype,
148                                int src, int tag, MPI_Comm comm);
149 void smpi_mpi_start(MPI_Request request);
150 void smpi_mpi_startall(int count, MPI_Request * requests);
151 void smpi_mpi_request_free(MPI_Request * request);
152 MPI_Request smpi_isend_init(void *buf, int count, MPI_Datatype datatype,
153                             int dst, int tag, MPI_Comm comm);
154 MPI_Request smpi_mpi_isend(void *buf, int count, MPI_Datatype datatype,
155                            int dst, int tag, MPI_Comm comm);
156 MPI_Request smpi_irecv_init(void *buf, int count, MPI_Datatype datatype,
157                             int src, int tag, MPI_Comm comm);
158 MPI_Request smpi_mpi_irecv(void *buf, int count, MPI_Datatype datatype,
159                            int src, int tag, MPI_Comm comm);
160 void smpi_mpi_recv(void *buf, int count, MPI_Datatype datatype, int src,
161                    int tag, MPI_Comm comm, MPI_Status * status);
162 void smpi_mpi_send(void *buf, int count, MPI_Datatype datatype, int dst,
163                    int tag, MPI_Comm comm);
164 void smpi_mpi_sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
165                        int dst, int sendtag, void *recvbuf, int recvcount,
166                        MPI_Datatype recvtype, int src, int recvtag,
167                        MPI_Comm comm, MPI_Status * status);
168 int smpi_mpi_test(MPI_Request * request, MPI_Status * status);
169 int smpi_mpi_testany(int count, MPI_Request requests[], int *index,
170                      MPI_Status * status);
171 int smpi_mpi_testall(int count, MPI_Request requests[],
172                      MPI_Status status[]);
173 void smpi_mpi_probe(int source, int tag, MPI_Comm comm, MPI_Status* status);
174 void smpi_mpi_iprobe(int source, int tag, MPI_Comm comm, int* flag,
175                     MPI_Status* status);
176 int smpi_mpi_get_count(MPI_Status * status, MPI_Datatype datatype);
177 void smpi_mpi_wait(MPI_Request * request, MPI_Status * status);
178 int smpi_mpi_waitany(int count, MPI_Request requests[],
179                      MPI_Status * status);
180 int smpi_mpi_waitall(int count, MPI_Request requests[],
181                       MPI_Status status[]);
182 int smpi_mpi_waitsome(int incount, MPI_Request requests[], int *indices,
183                       MPI_Status status[]);
184 int smpi_mpi_testsome(int incount, MPI_Request requests[], int *indices,
185                       MPI_Status status[]);
186 void smpi_mpi_bcast(void *buf, int count, MPI_Datatype datatype, int root,
187                     MPI_Comm comm);
188 void smpi_mpi_barrier(MPI_Comm comm);
189 void smpi_mpi_gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
190                      void *recvbuf, int recvcount, MPI_Datatype recvtype,
191                      int root, MPI_Comm comm);
192 void smpi_mpi_gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
193                       void *recvbuf, int *recvcounts, int *displs,
194                       MPI_Datatype recvtype, int root, MPI_Comm comm);
195 void smpi_mpi_allgather(void *sendbuf, int sendcount,
196                         MPI_Datatype sendtype, void *recvbuf,
197                         int recvcount, MPI_Datatype recvtype,
198                         MPI_Comm comm);
199 void smpi_mpi_allgatherv(void *sendbuf, int sendcount,
200                          MPI_Datatype sendtype, void *recvbuf,
201                          int *recvcounts, int *displs,
202                          MPI_Datatype recvtype, MPI_Comm comm);
203 void smpi_mpi_scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
204                       void *recvbuf, int recvcount, MPI_Datatype recvtype,
205                       int root, MPI_Comm comm);
206 void smpi_mpi_scatterv(void *sendbuf, int *sendcounts, int *displs,
207                        MPI_Datatype sendtype, void *recvbuf, int recvcount,
208                        MPI_Datatype recvtype, int root, MPI_Comm comm);
209 void smpi_mpi_reduce(void *sendbuf, void *recvbuf, int count,
210                      MPI_Datatype datatype, MPI_Op op, int root,
211                      MPI_Comm comm);
212 void smpi_mpi_allreduce(void *sendbuf, void *recvbuf, int count,
213                         MPI_Datatype datatype, MPI_Op op, MPI_Comm comm);
214 void smpi_mpi_scan(void *sendbuf, void *recvbuf, int count,
215                    MPI_Datatype datatype, MPI_Op op, MPI_Comm comm);
216
217 void nary_tree_bcast(void *buf, int count, MPI_Datatype datatype, int root,
218                      MPI_Comm comm, int arity);
219 void nary_tree_barrier(MPI_Comm comm, int arity);
220
221 int smpi_coll_tuned_alltoall_bruck(void *sendbuf, int sendcount,
222                                    MPI_Datatype sendtype, void *recvbuf,
223                                    int recvcount, MPI_Datatype recvtype,
224                                    MPI_Comm comm);
225 int smpi_coll_tuned_alltoall_basic_linear(void *sendbuf, int sendcount,
226                                           MPI_Datatype sendtype,
227                                           void *recvbuf, int recvcount,
228                                           MPI_Datatype recvtype,
229                                           MPI_Comm comm);
230 int smpi_coll_tuned_alltoall_pairwise(void *sendbuf, int sendcount,
231                                       MPI_Datatype sendtype, void *recvbuf,
232                                       int recvcount, MPI_Datatype recvtype,
233                                       MPI_Comm comm);
234 int smpi_coll_basic_alltoallv(void *sendbuf, int *sendcounts,
235                               int *senddisps, MPI_Datatype sendtype,
236                               void *recvbuf, int *recvcounts,
237                               int *recvdisps, MPI_Datatype recvtype,
238                               MPI_Comm comm);
239
240 // utilities
241 void smpi_bench_destroy(void);
242 void smpi_bench_begin(void);
243 void smpi_bench_end(void);
244 void smpi_execute_flops(double flops);
245
246 // f77 wrappers
247 void mpi_init__(int*);
248 void mpi_finalize__(int*);
249 void mpi_abort__(int* comm, int* errorcode, int* ierr);
250 void mpi_comm_rank__(int* comm, int* rank, int* ierr);
251 void mpi_comm_size__(int* comm, int* size, int* ierr);
252 double mpi_wtime__(void);
253
254 void mpi_comm_dup__(int* comm, int* newcomm, int* ierr);
255 void mpi_comm_split__(int* comm, int* color, int* key, int* comm_out, int* ierr);
256
257 void mpi_send_init__(void *buf, int* count, int* datatype, int* dst, int* tag,
258                      int* comm, int* request, int* ierr);
259 void mpi_isend__(void *buf, int* count, int* datatype, int* dst,
260                  int* tag, int* comm, int* request, int* ierr);
261 void mpi_send__(void* buf, int* count, int* datatype, int* dst,
262                 int* tag, int* comm, int* ierr);
263 void mpi_recv_init__(void *buf, int* count, int* datatype, int* src, int* tag,
264                      int* comm, int* request, int* ierr);
265 void mpi_irecv__(void *buf, int* count, int* datatype, int* src, int* tag,
266                  int* comm, int* request, int* ierr);
267 void mpi_recv__(void* buf, int* count, int* datatype, int* src,
268                 int* tag, int* comm, MPI_Status* status, int* ierr);
269 void mpi_start__(int* request, int* ierr);
270 void mpi_startall__(int* count, int* requests, int* ierr);
271 void mpi_wait__(int* request, MPI_Status* status, int* ierr);
272 void mpi_waitany__(int* count, int* requests, int* index, MPI_Status* status, int* ierr);
273 void mpi_waitall__(int* count, int* requests, MPI_Status* status, int* ierr);
274
275 void mpi_barrier__(int* comm, int* ierr);
276 void mpi_bcast__(void* buf, int* count, int* datatype, int* root, int* comm, int* ierr);
277 void mpi_reduce__(void* sendbuf, void* recvbuf, int* count,
278                   int* datatype, int* op, int* root, int* comm, int* ierr);
279 void mpi_allreduce__(void* sendbuf, void* recvbuf, int* count, int* datatype,
280                      int* op, int* comm, int* ierr);
281 void mpi_scatter__(void* sendbuf, int* sendcount, int* sendtype,
282                    void* recvbuf, int* recvcount, int* recvtype,
283                    int* root, int* comm, int* ierr);
284 void mpi_gather__(void* sendbuf, int* sendcount, int* sendtype,
285                   void* recvbuf, int* recvcount, int* recvtype,
286                   int* root, int* comm, int* ierr);
287 void mpi_allgather__(void* sendbuf, int* sendcount, int* sendtype,
288                      void* recvbuf, int* recvcount, int* recvtype,
289                      int* comm, int* ierr);
290 void mpi_scan__(void* sendbuf, void* recvbuf, int* count, int* datatype,
291                 int* op, int* comm, int* ierr);
292 void mpi_alltoall__(void* sendbuf, int* sendcount, int* sendtype,
293                     void* recvbuf, int* recvcount, int* recvtype, int* comm, int* ierr);
294
295 #endif