Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a field to attach user data to a smpi process and the associate set
[simgrid.git] / src / smpi / smpi_global.c
1 /* Copyright (c) 2007, 2008, 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 #include <stdint.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10
11 #include "private.h"
12 #include "smpi_mpi_dt_private.h"
13 #include "mc/mc.h"
14 #include "surf/surf.h"
15 #include "simix/smx_private.h"
16
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi,
19                                 "Logging specific to SMPI (kernel)");
20
21 typedef struct s_smpi_process_data {
22   int index;
23   int* argc;
24   char*** argv;
25   smx_rdv_t mailbox;
26   smx_rdv_t mailbox_small;
27   xbt_os_timer_t timer;
28   double simulated;
29   MPI_Comm comm_self;
30   void *data; /* user data */
31 } s_smpi_process_data_t;
32
33 static smpi_process_data_t *process_data = NULL;
34 static int process_count = 0;
35
36 MPI_Comm MPI_COMM_WORLD = MPI_COMM_NULL;
37
38 #define MAILBOX_NAME_MAXLEN (5 + sizeof(int) * 2 + 1)
39
40 static char* get_mailbox_name(char* str, int index) {
41   snprintf(str, MAILBOX_NAME_MAXLEN, "SMPI-%0*x", (int)(sizeof(int) * 2), index);
42   return str;
43 }
44
45 static char* get_mailbox_name_small(char* str, int index) {
46   snprintf(str, MAILBOX_NAME_MAXLEN, "small%0*x", (int)(sizeof(int) * 2), index);
47   return str;
48 }
49
50 void smpi_process_init(int *argc, char ***argv)
51 {
52   int index;
53   smpi_process_data_t data;
54   smx_process_t proc;
55
56   if(argc && argv) {
57     proc = SIMIX_process_self();
58     index = atoi((*argv)[1]);
59     data = smpi_process_remote_data(index);
60     simcall_process_set_data(proc, data);
61     if (*argc > 2) {
62       free((*argv)[1]);
63       memmove(&(*argv)[1], &(*argv)[2], sizeof(char *) * (*argc - 2));
64       (*argv)[(*argc) - 1] = NULL;
65     }
66     (*argc)--;
67     data->argc = argc;
68     data->argv = argv;
69     simcall_rdv_set_receiver(data->mailbox_small, proc);// set the process attached to the mailbox
70     XBT_DEBUG("<%d> New process in the game: %p", index, proc);
71   }
72 }
73
74 void smpi_process_destroy(void)
75 {
76   int index = smpi_process_index();
77
78   XBT_DEBUG("<%d> Process left the game", index);
79 }
80
81 /**
82  * @brief Prepares the current process for termination.
83  */
84 void smpi_process_finalize(void)
85 {
86   // wait for all pending asynchronous comms to finish
87   while (SIMIX_process_has_pending_comms(SIMIX_process_self())) {
88     simcall_process_sleep(0.01);
89   }
90 }
91
92 int smpi_process_argc(void) {
93   smpi_process_data_t data = smpi_process_data();
94
95   return data->argc ? *(data->argc) - 1 : 0;
96 }
97
98 int smpi_process_getarg(integer* index, char* dst, ftnlen len) {
99   smpi_process_data_t data = smpi_process_data();
100   char* arg;
101   ftnlen i;
102
103   if(!data->argc || !data->argv
104      || *index < 1 || *index >= *(data->argc)) {
105     return -1;
106   }
107   arg = (*data->argv)[*index];
108   for(i = 0; i < len && arg[i] != '\0'; i++) {
109     dst[i] = arg[i];
110   }
111   for(; i < len; i++) {
112     dst[i] = ' ';
113   }
114   return 0;
115 }
116
117 int smpi_global_size(void) {
118    char* value = getenv("SMPI_GLOBAL_SIZE");
119
120    if(!value) {
121       fprintf(stderr, "Please set env var SMPI_GLOBAL_SIZE to expected number of processes.\n");
122       abort();
123    }
124    return atoi(value);
125 }
126
127 smpi_process_data_t smpi_process_data(void)
128 {
129   return SIMIX_process_self_get_data(SIMIX_process_self());
130 }
131
132 smpi_process_data_t smpi_process_remote_data(int index)
133 {
134   return process_data[index];
135 }
136
137 void smpi_process_set_user_data(void *data)
138 {
139   smpi_process_data_t process_data = smpi_process_data();
140   process_data->data = data;
141 }
142
143
144 int smpi_process_count(void)
145 {
146   return process_count;
147 }
148
149 int smpi_process_index(void)
150 {
151   smpi_process_data_t data = smpi_process_data();
152
153   return data->index;
154 }
155
156 smx_rdv_t smpi_process_mailbox(void) {
157   smpi_process_data_t data = smpi_process_data();
158
159   return data->mailbox;
160 }
161
162 smx_rdv_t smpi_process_mailbox_small(void) {
163   smpi_process_data_t data = smpi_process_data();
164
165   return data->mailbox_small;
166 }
167
168 smx_rdv_t smpi_process_remote_mailbox(int index) {
169   smpi_process_data_t data = smpi_process_remote_data(index);
170
171   return data->mailbox;
172 }
173
174
175 smx_rdv_t smpi_process_remote_mailbox_small(int index) {
176   smpi_process_data_t data = smpi_process_remote_data(index);
177
178   return data->mailbox_small;
179 }
180
181 xbt_os_timer_t smpi_process_timer(void)
182 {
183   smpi_process_data_t data = smpi_process_data();
184
185   return data->timer;
186 }
187
188 void smpi_process_simulated_start(void) {
189   smpi_process_data_t data = smpi_process_data();
190
191   data->simulated = SIMIX_get_clock();
192 }
193
194 double smpi_process_simulated_elapsed(void) {
195   smpi_process_data_t data = smpi_process_data();
196
197   return SIMIX_get_clock() - data->simulated;
198 }
199
200 MPI_Comm smpi_process_comm_self(void) {
201   smpi_process_data_t data = smpi_process_data();
202
203   return data->comm_self;
204 }
205
206 void print_request(const char *message, MPI_Request request) {
207   XBT_DEBUG("%s  request %p  [buf = %p, size = %zu, src = %d, dst = %d, tag = %d, flags = %x]",
208          message, request, request->buf, request->size,
209          request->src, request->dst, request->tag, request->flags);
210 }
211
212 void smpi_global_init(void)
213 {
214   int i;
215   MPI_Group group;
216   char name[MAILBOX_NAME_MAXLEN];
217
218   SIMIX_comm_set_copy_data_callback(&SIMIX_comm_copy_buffer_callback);
219   process_count = SIMIX_process_count();
220   process_data = xbt_new(smpi_process_data_t, process_count);
221   for (i = 0; i < process_count; i++) {
222     process_data[i] = xbt_new(s_smpi_process_data_t, 1);
223     process_data[i]->index = i;
224     process_data[i]->argc = NULL;
225     process_data[i]->argv = NULL;
226     process_data[i]->mailbox = simcall_rdv_create(get_mailbox_name(name, i));
227     process_data[i]->mailbox_small = simcall_rdv_create(get_mailbox_name_small(name, i));
228     process_data[i]->timer = xbt_os_timer_new();
229     group = smpi_group_new(1);
230     process_data[i]->comm_self = smpi_comm_new(group);
231     smpi_group_set_mapping(group, i, 0);
232   }
233   group = smpi_group_new(process_count);
234   MPI_COMM_WORLD = smpi_comm_new(group);
235   for (i = 0; i < process_count; i++) {
236     smpi_group_set_mapping(group, i, i);
237   }
238 }
239
240 void smpi_global_destroy(void)
241 {
242   int count = smpi_process_count();
243   int i;
244
245   smpi_bench_destroy();
246   smpi_comm_destroy(MPI_COMM_WORLD);
247   MPI_COMM_WORLD = MPI_COMM_NULL;
248   for (i = 0; i < count; i++) {
249     smpi_comm_destroy(process_data[i]->comm_self);
250     xbt_os_timer_free(process_data[i]->timer);
251     simcall_rdv_destroy(process_data[i]->mailbox);
252     simcall_rdv_destroy(process_data[i]->mailbox_small);
253     xbt_free(process_data[i]);
254   }
255   xbt_free(process_data);
256   process_data = NULL;
257
258   smpi_free_static();
259 }
260
261 /* Fortran specific stuff */
262 /* With smpicc, the following weak symbols are used */
263 /* With smpiff, the following weak symbols are replaced by those in libf2c */
264 int __attribute__((weak)) xargc;
265 char** __attribute__((weak)) xargv;
266
267 int __attribute__((weak)) main(int argc, char** argv) {
268    xargc = argc;
269    xargv = argv;
270    return MAIN__();
271 }
272
273 int MAIN__(void)
274 {
275   srand(SMPI_RAND_SEED);
276
277   if(getenv("SMPI_PRETEND_CC") != NULL) {
278   /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the configuration tools */
279     return 0;
280   }
281
282   /* Connect log categories.  See xbt/log.c */
283   XBT_LOG_CONNECT(smpi);  /* Keep this line as soon as possible in this function: xbt_log_appender_file.c depends on it
284                              DO NOT connect this in XBT or so, or it will be useless to xbt_log_appender_file.c */
285   XBT_LOG_CONNECT(smpi_base);
286   XBT_LOG_CONNECT(smpi_bench);
287   XBT_LOG_CONNECT(smpi_coll);
288   XBT_LOG_CONNECT(smpi_comm);
289   XBT_LOG_CONNECT(smpi_group);
290   XBT_LOG_CONNECT(smpi_kernel);
291   XBT_LOG_CONNECT(smpi_mpi);
292   XBT_LOG_CONNECT(smpi_mpi_dt);
293   XBT_LOG_CONNECT(smpi_pmpi);
294
295 #ifdef HAVE_TRACING
296   TRACE_global_init(&xargc, xargv);
297 #endif
298
299   SIMIX_global_init(&xargc, xargv);
300
301 #ifdef HAVE_TRACING
302   TRACE_start();
303 #endif
304
305   // parse the platform file: get the host list
306   SIMIX_create_environment(xargv[1]);
307
308   SIMIX_function_register_default(smpi_simulated_main);
309   SIMIX_launch_application(xargv[2]);
310
311   smpi_global_init();
312
313   /* Clean IO before the run */
314   fflush(stdout);
315   fflush(stderr);
316
317   if (MC_IS_ENABLED)
318     MC_modelcheck();
319   else
320     SIMIX_run();
321
322   if (xbt_cfg_get_int(_surf_cfg_set, "smpi/display_timing"))
323     XBT_INFO("Simulation time: %g seconds.", SIMIX_get_clock());
324
325   smpi_global_destroy();
326
327 #ifdef HAVE_TRACING
328   TRACE_end();
329 #endif
330
331   SIMIX_clean();
332   return 0;
333 }