Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid into hypervisor
[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 #include "simgrid/sg_config.h"
17
18
19 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi,
20                                 "Logging specific to SMPI (kernel)");
21
22 typedef struct s_smpi_process_data {
23   int index;
24   int* argc;
25   char*** argv;
26   smx_rdv_t mailbox;
27   smx_rdv_t mailbox_small;
28   xbt_os_timer_t timer;
29   double simulated;
30   MPI_Comm comm_self;
31   void *data; /* user data */
32 } s_smpi_process_data_t;
33
34 static smpi_process_data_t *process_data = NULL;
35 static int process_count = 0;
36
37 MPI_Comm MPI_COMM_WORLD = MPI_COMM_NULL;
38
39 MPI_Errhandler* MPI_ERRORS_RETURN = NULL;
40 MPI_Errhandler* MPI_ERRORS_ARE_FATAL = NULL;
41 MPI_Errhandler* MPI_ERRHANDLER_NULL = NULL;
42
43 #define MAILBOX_NAME_MAXLEN (5 + sizeof(int) * 2 + 1)
44
45 static char* get_mailbox_name(char* str, int index) {
46   snprintf(str, MAILBOX_NAME_MAXLEN, "SMPI-%0*x", (int)(sizeof(int) * 2), index);
47   return str;
48 }
49
50 static char* get_mailbox_name_small(char* str, int index) {
51   snprintf(str, MAILBOX_NAME_MAXLEN, "small%0*x", (int)(sizeof(int) * 2), index);
52   return str;
53 }
54
55 void smpi_process_init(int *argc, char ***argv)
56 {
57   int index;
58   smpi_process_data_t data;
59   smx_process_t proc;
60
61   if(argc && argv) {
62     proc = SIMIX_process_self();
63     index = atoi((*argv)[1]);
64     data = smpi_process_remote_data(index);
65     simcall_process_set_data(proc, data);
66     if (*argc > 2) {
67       free((*argv)[1]);
68       memmove(&(*argv)[1], &(*argv)[2], sizeof(char *) * (*argc - 2));
69       (*argv)[(*argc) - 1] = NULL;
70     }
71     (*argc)--;
72     data->argc = argc;
73     data->argv = argv;
74     simcall_rdv_set_receiver(data->mailbox_small, proc);// set the process attached to the mailbox
75     XBT_DEBUG("<%d> New process in the game: %p", index, proc);
76   }
77 }
78
79 void smpi_process_destroy(void)
80 {
81   int index = smpi_process_index();
82
83   XBT_DEBUG("<%d> Process left the game", index);
84 }
85
86 /**
87  * @brief Prepares the current process for termination.
88  */
89 void smpi_process_finalize(void)
90 {
91   // wait for all pending asynchronous comms to finish
92   while (SIMIX_process_has_pending_comms(SIMIX_process_self())) {
93     simcall_process_sleep(0.01);
94   }
95 }
96
97 #ifdef SMPI_F2C
98 int smpi_process_argc(void) {
99   smpi_process_data_t data = smpi_process_data();
100
101   return data->argc ? *(data->argc) - 1 : 0;
102 }
103
104 int smpi_process_getarg(integer* index, char* dst, ftnlen len) {
105   smpi_process_data_t data = smpi_process_data();
106   char* arg;
107   ftnlen i;
108
109   if(!data->argc || !data->argv
110      || *index < 1 || *index >= *(data->argc)) {
111     return -1;
112   }
113   arg = (*data->argv)[*index];
114   for(i = 0; i < len && arg[i] != '\0'; i++) {
115     dst[i] = arg[i];
116   }
117   for(; i < len; i++) {
118     dst[i] = ' ';
119   }
120   return 0;
121 }
122
123 int smpi_global_size(void) {
124    char* value = getenv("SMPI_GLOBAL_SIZE");
125
126    if(!value) {
127      fprintf(stderr, "Please set env var SMPI_GLOBAL_SIZE to expected number of processes.\n");
128      xbt_abort();
129    }
130    return atoi(value);
131 }
132 #endif
133
134 smpi_process_data_t smpi_process_data(void)
135 {
136   return SIMIX_process_self_get_data(SIMIX_process_self());
137 }
138
139 smpi_process_data_t smpi_process_remote_data(int index)
140 {
141   return process_data[index];
142 }
143
144 void smpi_process_set_user_data(void *data)
145 {
146   smpi_process_data_t process_data = smpi_process_data();
147   process_data->data = data;
148 }
149
150 void* smpi_process_get_user_data(){
151   smpi_process_data_t process_data = smpi_process_data();
152   return process_data->data;
153 }
154
155 int smpi_process_count(void)
156 {
157   return process_count;
158 }
159
160 int smpi_process_index(void)
161 {
162   smpi_process_data_t data = smpi_process_data();
163
164   return data->index;
165 }
166
167 smx_rdv_t smpi_process_mailbox(void) {
168   smpi_process_data_t data = smpi_process_data();
169
170   return data->mailbox;
171 }
172
173 smx_rdv_t smpi_process_mailbox_small(void) {
174   smpi_process_data_t data = smpi_process_data();
175
176   return data->mailbox_small;
177 }
178
179 smx_rdv_t smpi_process_remote_mailbox(int index) {
180   smpi_process_data_t data = smpi_process_remote_data(index);
181
182   return data->mailbox;
183 }
184
185
186 smx_rdv_t smpi_process_remote_mailbox_small(int index) {
187   smpi_process_data_t data = smpi_process_remote_data(index);
188
189   return data->mailbox_small;
190 }
191
192 xbt_os_timer_t smpi_process_timer(void)
193 {
194   smpi_process_data_t data = smpi_process_data();
195
196   return data->timer;
197 }
198
199 void smpi_process_simulated_start(void) {
200   smpi_process_data_t data = smpi_process_data();
201
202   data->simulated = SIMIX_get_clock();
203 }
204
205 double smpi_process_simulated_elapsed(void) {
206   smpi_process_data_t data = smpi_process_data();
207
208   return SIMIX_get_clock() - data->simulated;
209 }
210
211 MPI_Comm smpi_process_comm_self(void) {
212   smpi_process_data_t data = smpi_process_data();
213
214   return data->comm_self;
215 }
216
217 void print_request(const char *message, MPI_Request request) {
218   XBT_DEBUG("%s  request %p  [buf = %p, size = %zu, src = %d, dst = %d, tag = %d, flags = %x]",
219          message, request, request->buf, request->size,
220          request->src, request->dst, request->tag, request->flags);
221 }
222
223 static void SMPI_comm_copy_buffer_callback(smx_action_t comm, void* buff, size_t buff_size)
224 {
225   XBT_DEBUG("Copy the data over");
226   memcpy(comm->comm.dst_buff, buff, buff_size);
227   if (comm->comm.detached) { // if this is a detached send, the source buffer was duplicated by SMPI sender to make the original buffer available to the application ASAP
228     xbt_free(buff);
229     //It seems that the request is used after the call there this should
230     //be free somewhereelse  but where???
231     //xbt_free(comm->comm.src_data);// inside SMPI the request is keep
232     //inside the user data and should be free 
233     comm->comm.src_buff = NULL;
234   }
235 }
236
237 void smpi_global_init(void)
238 {
239   int i;
240   MPI_Group group;
241   char name[MAILBOX_NAME_MAXLEN];
242
243   SIMIX_comm_set_copy_data_callback(&SMPI_comm_copy_buffer_callback);
244   process_count = SIMIX_process_count();
245   process_data = xbt_new(smpi_process_data_t, process_count);
246   for (i = 0; i < process_count; i++) {
247     process_data[i] = xbt_new(s_smpi_process_data_t, 1);
248     process_data[i]->index = i;
249     process_data[i]->argc = NULL;
250     process_data[i]->argv = NULL;
251     process_data[i]->mailbox = simcall_rdv_create(get_mailbox_name(name, i));
252     process_data[i]->mailbox_small = simcall_rdv_create(get_mailbox_name_small(name, i));
253     process_data[i]->timer = xbt_os_timer_new();
254     group = smpi_group_new(1);
255     process_data[i]->comm_self = smpi_comm_new(group);
256     smpi_group_set_mapping(group, i, 0);
257   }
258   group = smpi_group_new(process_count);
259   MPI_COMM_WORLD = smpi_comm_new(group);
260   for (i = 0; i < process_count; i++) {
261     smpi_group_set_mapping(group, i, i);
262   }
263 }
264
265 void smpi_global_destroy(void)
266 {
267   int count = smpi_process_count();
268   int i;
269
270   smpi_bench_destroy();
271   smpi_group_destroy(smpi_comm_group(MPI_COMM_WORLD));
272   smpi_comm_destroy(MPI_COMM_WORLD);
273   MPI_COMM_WORLD = MPI_COMM_NULL;
274   for (i = 0; i < count; i++) {
275     smpi_group_destroy(smpi_comm_group(process_data[i]->comm_self));
276     smpi_comm_destroy(process_data[i]->comm_self);
277     xbt_os_timer_free(process_data[i]->timer);
278     simcall_rdv_destroy(process_data[i]->mailbox);
279     simcall_rdv_destroy(process_data[i]->mailbox_small);
280     xbt_free(process_data[i]);
281   }
282   xbt_free(process_data);
283   process_data = NULL;
284
285   smpi_free_static();
286 }
287
288 /* Fortran specific stuff */
289 /* With smpicc, the following weak symbols are used */
290 /* With smpiff, the following weak symbols are replaced by those in libf2c */
291 int __attribute__((weak)) xargc;
292 char** __attribute__((weak)) xargv;
293
294 #ifndef WIN32
295 void __attribute__((weak)) user_main_(){
296   xbt_die("Should not be in this smpi_simulated_main");
297   return;
298 }
299 int __attribute__((weak)) smpi_simulated_main_(int argc, char** argv) {
300   smpi_process_init(&argc, &argv);
301   user_main_();
302   //xbt_die("Should not be in this smpi_simulated_main");
303   return 0;
304 }
305
306 int __attribute__((weak)) main(int argc, char** argv) {
307    return smpi_main(smpi_simulated_main_,argc,argv);
308 }
309
310 int __attribute__((weak)) MAIN__(){
311   return smpi_main(smpi_simulated_main_,xargc, xargv);
312 };
313 #endif
314
315 int smpi_main(int (*realmain) (int argc, char *argv[]),int argc, char *argv[])
316 {
317   srand(SMPI_RAND_SEED);
318
319   if(getenv("SMPI_PRETEND_CC") != NULL) {
320   /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the configuration tools */
321     return 0;
322   }
323
324   /* Connect log categories.  See xbt/log.c */
325   XBT_LOG_CONNECT(smpi);  /* Keep this line as soon as possible in this
326                              function: xbt_log_appender_file.c depends on it
327                              DO NOT connect this in XBT or so, or it will be
328                              useless to xbt_log_appender_file.c */
329 #ifdef HAVE_TRACING
330   XBT_LOG_CONNECT(instr_smpi);
331 #endif
332   XBT_LOG_CONNECT(smpi_base);
333   XBT_LOG_CONNECT(smpi_bench);
334   XBT_LOG_CONNECT(smpi_coll);
335   XBT_LOG_CONNECT(smpi_comm);
336   XBT_LOG_CONNECT(smpi_group);
337   XBT_LOG_CONNECT(smpi_kernel);
338   XBT_LOG_CONNECT(smpi_mpi);
339   XBT_LOG_CONNECT(smpi_mpi_dt);
340   XBT_LOG_CONNECT(smpi_pmpi);
341   XBT_LOG_CONNECT(smpi_replay);
342   XBT_LOG_CONNECT(smpi_colls);
343
344 #ifdef HAVE_TRACING
345   TRACE_global_init(&argc, argv);
346
347   TRACE_add_start_function(TRACE_smpi_alloc);
348   TRACE_add_end_function(TRACE_smpi_release);
349 #endif
350
351   SIMIX_global_init(&argc, argv);
352
353 #ifdef HAVE_TRACING
354   TRACE_start();
355 #endif
356
357   // parse the platform file: get the host list
358   SIMIX_create_environment(argv[1]);
359
360   SIMIX_function_register_default(realmain);
361   SIMIX_launch_application(argv[2]);
362
363   smpi_global_init();
364
365   /* Clean IO before the run */
366   fflush(stdout);
367   fflush(stderr);
368
369   if (MC_is_active())
370     MC_modelcheck_safety();
371   else
372     SIMIX_run();
373
374   if (sg_cfg_get_int("smpi/display_timing"))
375     XBT_INFO("Simulation time: %g seconds.", SIMIX_get_clock());
376
377   smpi_global_destroy();
378
379 #ifdef HAVE_TRACING
380   TRACE_end();
381 #endif
382
383   return 0;
384 }