Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
leak --
[simgrid.git] / src / smpi / smpi_global.c
1 /* Copyright (c) 2007-2014. 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 "private.h"
8 #include "smpi_mpi_dt_private.h"
9 #include "mc/mc.h"
10 #include "xbt/replay.h"
11 #include "surf/surf.h"
12 #include "simix/smx_private.h"
13 #include "simgrid/sg_config.h"
14
15 #include <float.h>              /* DBL_MAX */
16 #include <stdint.h>
17 #include <stdio.h>
18 #include <stdlib.h>
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi,
21                                 "Logging specific to SMPI (kernel)");
22
23 typedef struct s_smpi_process_data {
24   double simulated;
25   int *argc;
26   char ***argv;
27   smx_rdv_t mailbox;
28   smx_rdv_t mailbox_small;
29   xbt_os_timer_t timer;
30   MPI_Comm comm_self;
31   MPI_Comm* comm_world;
32   void *data;                   /* user data */
33   int index;
34   char state;
35   int sampling;                 /* inside an SMPI_SAMPLE_ block? */
36   char* instance_id;
37 } s_smpi_process_data_t;
38
39 static smpi_process_data_t *process_data = NULL;
40 int process_count = 0;
41 int* index_to_process_data = NULL;
42
43
44 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
45 int MPI_UNIVERSE_SIZE;
46
47 MPI_Errhandler *MPI_ERRORS_RETURN = NULL;
48 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = NULL;
49 MPI_Errhandler *MPI_ERRHANDLER_NULL = NULL;
50
51 #define MAILBOX_NAME_MAXLEN (5 + sizeof(int) * 2 + 1)
52
53 static char *get_mailbox_name(char *str, int index)
54 {
55   snprintf(str, MAILBOX_NAME_MAXLEN, "SMPI-%0*x", (int) (sizeof(int) * 2),
56            index);
57   return str;
58 }
59
60 static char *get_mailbox_name_small(char *str, int index)
61 {
62   snprintf(str, MAILBOX_NAME_MAXLEN, "small%0*x", (int) (sizeof(int) * 2),
63            index);
64   return str;
65 }
66
67 void smpi_process_init(int *argc, char ***argv)
68 {
69   int index=-1;
70   smpi_process_data_t data;
71   smx_process_t proc;
72
73   if (argc && argv) {
74     proc = SIMIX_process_self();
75     //FIXME: dirty cleanup method to avoid using msg cleanup functions on these processes when using MSG+SMPI
76     proc->context->cleanup_func=SIMIX_process_cleanup;
77     char* instance_id = (*argv)[1];
78     int rank = atoi((*argv)[2]);
79     index =  SIMIX_process_get_PID(proc) -1;
80
81 #ifdef SMPI_F2C
82     smpi_current_rank = index;
83 #endif
84     if(!index_to_process_data){
85         index_to_process_data=(int*)xbt_malloc(SIMIX_process_count()*sizeof(int));
86     }
87     MPI_Comm* temp_comm_world = smpi_deployment_register_process(instance_id, rank, index);
88     data = smpi_process_remote_data(index);
89     data->comm_world = temp_comm_world;
90     data->index = index;
91     data->instance_id = instance_id;
92     simcall_process_set_data(proc, data);
93     if (*argc > 3) {
94       free((*argv)[1]);
95       free((*argv)[2]);
96       memmove(&(*argv)[1], &(*argv)[3], sizeof(char *) * (*argc - 3));
97       (*argv)[(*argc) - 1] = NULL;
98       (*argv)[(*argc) - 2] = NULL;
99     }
100     (*argc)-=2;
101     data->argc = argc;
102     data->argv = argv;
103     // set the process attached to the mailbox
104     simcall_rdv_set_receiver(data->mailbox_small, proc);
105     XBT_DEBUG("<%d> New process in the game: %p", index, proc);
106
107     if(smpi_privatize_global_variables){
108       switch_data_segment(index);
109     }
110
111   }
112   if (smpi_process_data() == NULL)
113     xbt_die("smpi_process_data() returned NULL. You probably gave a NULL parameter to MPI_Init. Although it's required by MPI-2, this is currently not supported by SMPI.");
114 }
115
116 void smpi_process_destroy(void)
117 {
118   int index = smpi_process_index();
119   if(smpi_privatize_global_variables){
120     switch_data_segment(index);
121   }
122   process_data[index_to_process_data[index]]->state = SMPI_FINALIZED;
123   XBT_DEBUG("<%d> Process left the game", index);
124 }
125
126 /**
127  * @brief Prepares the current process for termination.
128  */
129 void smpi_process_finalize(void)
130 {
131 #if 0
132   // wait for all pending asynchronous comms to finish
133   while (SIMIX_process_has_pending_comms(SIMIX_process_self())) {
134     simcall_process_sleep(0.01);
135   }
136 #else
137   int i;
138   int size = smpi_comm_size(MPI_COMM_WORLD);
139   int rank = smpi_comm_rank(MPI_COMM_WORLD);
140   /* All non-root send & receive zero-length message. */
141   if (rank > 0) {
142     smpi_mpi_ssend (NULL, 0, MPI_BYTE, 0,
143                     COLL_TAG_BARRIER,
144                     MPI_COMM_WORLD);
145     smpi_mpi_recv (NULL, 0, MPI_BYTE, 0,
146                     COLL_TAG_BARRIER,
147                     MPI_COMM_WORLD, MPI_STATUS_IGNORE);
148   }
149   /* The root collects and broadcasts the messages. */
150   else {
151     MPI_Request* requests;
152     requests = (MPI_Request*)malloc( size * sizeof(MPI_Request) );
153     for (i = 1; i < size; ++i) {
154       requests[i] = smpi_mpi_irecv(NULL, 0, MPI_BYTE, MPI_ANY_SOURCE,
155                                    COLL_TAG_BARRIER, MPI_COMM_WORLD
156                                    );
157     }
158     smpi_mpi_waitall( size-1, requests+1, MPI_STATUSES_IGNORE );
159     for (i = 1; i < size; ++i) {
160       requests[i] = smpi_mpi_issend(NULL, 0, MPI_BYTE, i,
161                                    COLL_TAG_BARRIER,
162                                    MPI_COMM_WORLD
163                                    );
164     }
165     smpi_mpi_waitall( size-1, requests+1, MPI_STATUSES_IGNORE );
166     free( requests );
167   }
168 #endif
169 }
170
171 /**
172  * @brief Check if a process is finalized
173  */
174 int smpi_process_finalized()
175 {
176   int index = smpi_process_index();
177     if (index != MPI_UNDEFINED)
178       return (process_data[index_to_process_data[index]]->state == SMPI_FINALIZED);
179     else
180       return 0;
181 }
182
183 /**
184  * @brief Check if a process is initialized
185  */
186 int smpi_process_initialized(void)
187 {
188   int index = smpi_process_index();
189   return ( (index != MPI_UNDEFINED)
190           && (process_data[index_to_process_data[index]]->state == SMPI_INITIALIZED));
191 }
192
193 /**
194  * @brief Mark a process as initialized (=MPI_Init called)
195  */
196 void smpi_process_mark_as_initialized(void)
197 {
198   int index = smpi_process_index();
199   if ((index != MPI_UNDEFINED) && (!process_data[index_to_process_data[index]]->state != SMPI_FINALIZED))
200     process_data[index_to_process_data[index]]->state = SMPI_INITIALIZED;
201 }
202
203
204 #ifdef SMPI_F2C
205 int smpi_process_argc(void)
206 {
207   smpi_process_data_t data = smpi_process_data();
208   return data->argc ? *(data->argc) - 1 : 0;
209 }
210
211 int smpi_process_getarg(integer * index, char *dst, ftnlen len)
212 {
213   smpi_process_data_t data = smpi_process_data();
214   char *arg;
215   ftnlen i;
216
217   if (!data->argc || !data->argv || *index < 1 || *index >= *(data->argc)) {
218     return -1;
219   }
220   arg = (*data->argv)[*index];
221   for (i = 0; i < len && arg[i] != '\0'; i++) {
222     dst[i] = arg[i];
223   }
224   for (; i < len; i++) {
225     dst[i] = ' ';
226   }
227   return 0;
228 }
229 #endif
230
231 int smpi_global_size(void)
232 {
233   char *value = getenv("SMPI_GLOBAL_SIZE");
234
235   if (!value) {
236     fprintf(stderr,
237             "Please set env var SMPI_GLOBAL_SIZE to expected number of processes.\n");
238     xbt_abort();
239   }
240   return atoi(value);
241 }
242
243 smpi_process_data_t smpi_process_data(void)
244 {
245   return SIMIX_process_self_get_data(SIMIX_process_self());
246 }
247
248 smpi_process_data_t smpi_process_remote_data(int index)
249 {
250   return process_data[index_to_process_data[index]];
251 }
252
253 void smpi_process_set_user_data(void *data)
254 {
255   smpi_process_data_t process_data = smpi_process_data();
256   process_data->data = data;
257 }
258
259 void *smpi_process_get_user_data()
260 {
261   smpi_process_data_t process_data = smpi_process_data();
262   return process_data->data;
263 }
264
265 int smpi_process_count(void)
266 {
267   return process_count;
268 }
269
270 int smpi_process_index(void)
271 {
272   smpi_process_data_t data = smpi_process_data();
273   //return -1 if not initialized
274   return data ? data->index : MPI_UNDEFINED;
275 }
276
277 MPI_Comm smpi_process_comm_world(void)
278 {
279   smpi_process_data_t data = smpi_process_data();
280   //return MPI_COMM_NULL if not initialized
281   return data ? *data->comm_world : MPI_COMM_NULL;
282 }
283
284 smx_rdv_t smpi_process_mailbox(void)
285 {
286   smpi_process_data_t data = smpi_process_data();
287   return data->mailbox;
288 }
289
290 smx_rdv_t smpi_process_mailbox_small(void)
291 {
292   smpi_process_data_t data = smpi_process_data();
293   return data->mailbox_small;
294 }
295
296 smx_rdv_t smpi_process_remote_mailbox(int index)
297 {
298   smpi_process_data_t data = smpi_process_remote_data(index);
299   return data->mailbox;
300 }
301
302
303 smx_rdv_t smpi_process_remote_mailbox_small(int index)
304 {
305   smpi_process_data_t data = smpi_process_remote_data(index);
306   return data->mailbox_small;
307 }
308
309 xbt_os_timer_t smpi_process_timer(void)
310 {
311   smpi_process_data_t data = smpi_process_data();
312   return data->timer;
313 }
314
315 void smpi_process_simulated_start(void)
316 {
317   smpi_process_data_t data = smpi_process_data();
318   data->simulated = SIMIX_get_clock();
319 }
320
321 double smpi_process_simulated_elapsed(void)
322 {
323   smpi_process_data_t data = smpi_process_data();
324   return SIMIX_get_clock() - data->simulated;
325 }
326
327 MPI_Comm smpi_process_comm_self(void)
328 {
329   smpi_process_data_t data = smpi_process_data();
330   if(data->comm_self==MPI_COMM_NULL){
331     MPI_Group group = smpi_group_new(1);
332     data->comm_self = smpi_comm_new(group, NULL);
333     smpi_group_set_mapping(group, smpi_process_index(), 0);
334   }
335
336   return data->comm_self;
337 }
338
339 void smpi_process_set_sampling(int s)
340 {
341   smpi_process_data_t data = smpi_process_data();
342   data->sampling = s;
343 }
344
345 int smpi_process_get_sampling(void)
346 {
347   smpi_process_data_t data = smpi_process_data();
348   return data->sampling;
349 }
350
351 void print_request(const char *message, MPI_Request request)
352 {
353   XBT_DEBUG
354       ("%s  request %p  [buf = %p, size = %zu, src = %d, dst = %d, tag = %d, flags = %x]",
355        message, request, request->buf, request->size, request->src,
356        request->dst, request->tag, request->flags);
357 }
358
359 void smpi_comm_copy_buffer_callback(smx_action_t comm,
360                                            void *buff, size_t buff_size)
361 {
362   XBT_DEBUG("Copy the data over");
363   if(_xbt_replay_is_active()) return;
364   void* tmpbuff=buff;
365
366   if((smpi_privatize_global_variables)
367       && ((char*)buff >= start_data_exe)
368       && ((char*)buff < start_data_exe + size_data_exe )
369     ){
370        XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
371        switch_data_segment(((smpi_process_data_t)SIMIX_process_get_data(comm->comm.src_proc))->index);
372        tmpbuff = (void*)xbt_malloc(buff_size);
373        memcpy(tmpbuff, buff, buff_size);
374   }
375
376
377   if((smpi_privatize_global_variables)
378       && ((char*)comm->comm.dst_buff >= start_data_exe)
379       && ((char*)comm->comm.dst_buff < start_data_exe + size_data_exe )
380     ){
381        XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
382        switch_data_segment(((smpi_process_data_t)SIMIX_process_get_data(comm->comm.dst_proc))->index);
383   }
384
385
386   memcpy(comm->comm.dst_buff, tmpbuff, buff_size);
387   if (comm->comm.detached) {
388     // if this is a detached send, the source buffer was duplicated by SMPI
389     // sender to make the original buffer available to the application ASAP
390     xbt_free(buff);
391     //It seems that the request is used after the call there this should
392     //be free somewhereelse  but where???
393     //xbt_free(comm->comm.src_data);// inside SMPI the request is keep
394     //inside the user data and should be free
395     comm->comm.src_buff = NULL;
396   }
397
398   if(tmpbuff!=buff)xbt_free(tmpbuff);
399
400 }
401
402 static void smpi_check_options(){
403   //check correctness of MPI parameters
404
405    xbt_assert(sg_cfg_get_int("smpi/async_small_thres") <=
406               sg_cfg_get_int("smpi/send_is_detached_thres"));
407
408    if (sg_cfg_is_default_value("smpi/running_power")) {
409      XBT_INFO("You did not set the power of the host running the simulation.  "
410               "The timings will certainly not be accurate.  "
411               "Use the option \"--cfg=smpi/running_power:<flops>\" to set its value."
412               "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more information. ");
413    }
414 }
415
416 void smpi_global_init(void)
417 {
418   int i;
419   MPI_Group group;
420   char name[MAILBOX_NAME_MAXLEN];
421   int smpirun=0;
422
423
424   if (process_count == 0){
425     process_count = SIMIX_process_count();
426     smpirun=1;
427   }
428   process_data = xbt_new0(smpi_process_data_t, process_count);
429   for (i = 0; i < process_count; i++) {
430     process_data[i] = xbt_new(s_smpi_process_data_t, 1);
431     //process_data[i]->index = i;
432     process_data[i]->argc = NULL;
433     process_data[i]->argv = NULL;
434     process_data[i]->mailbox = simcall_rdv_create(get_mailbox_name(name, i));
435     process_data[i]->mailbox_small =
436         simcall_rdv_create(get_mailbox_name_small(name, i));
437     process_data[i]->timer = xbt_os_timer_new();
438     if (MC_is_active())
439       MC_ignore_heap(process_data[i]->timer, xbt_os_timer_size());
440     process_data[i]->comm_self = MPI_COMM_NULL;
441     process_data[i]->comm_world = NULL;
442     process_data[i]->state = SMPI_UNINITIALIZED;
443     process_data[i]->sampling = 0;
444   }
445   //if the process was launched through smpirun script
446   //we generate a global mpi_comm_world
447   //if not, we let MPI_COMM_NULL, and the comm world
448   //will be private to each mpi instance
449   if(smpirun){
450     group = smpi_group_new(process_count);
451     MPI_COMM_WORLD = smpi_comm_new(group, NULL);
452     MPI_UNIVERSE_SIZE = smpi_comm_size(MPI_COMM_WORLD);
453     for (i = 0; i < process_count; i++) {
454       smpi_group_set_mapping(group, i, i);
455     }
456   }
457 }
458
459 void smpi_global_destroy(void)
460 {
461   int count = smpi_process_count();
462   int i;
463
464   smpi_bench_destroy();
465   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
466       while (smpi_group_unuse(smpi_comm_group(MPI_COMM_WORLD)) > 0);
467       xbt_free(MPI_COMM_WORLD);
468   }
469   MPI_COMM_WORLD = MPI_COMM_NULL;
470   for (i = 0; i < count; i++) {
471     if(process_data[i]->comm_self!=MPI_COMM_NULL){
472       smpi_group_unuse(smpi_comm_group(process_data[i]->comm_self));
473       smpi_comm_destroy(process_data[i]->comm_self);
474     }
475     xbt_os_timer_free(process_data[i]->timer);
476     simcall_rdv_destroy(process_data[i]->mailbox);
477     simcall_rdv_destroy(process_data[i]->mailbox_small);
478     xbt_free(process_data[i]);
479   }
480   xbt_free(process_data);
481   process_data = NULL;
482
483   if(index_to_process_data){
484       xbt_free(index_to_process_data);
485   }
486   if(smpi_privatize_global_variables)
487     smpi_destroy_global_memory_segments();
488   smpi_free_static();
489 }
490
491 /* Fortran specific stuff */
492 /* With smpicc, the following weak symbols are used */
493 /* With smpiff, the following weak symbols are replaced by those in libf2c */
494 int __attribute__ ((weak)) xargc;
495 char ** __attribute__ ((weak)) xargv;
496
497 #ifndef WIN32
498 void __attribute__ ((weak)) user_main_()
499 {
500   xbt_die("Should not be in this smpi_simulated_main");
501   return;
502 }
503
504 int __attribute__ ((weak)) smpi_simulated_main_(int argc, char **argv)
505 {
506   smpi_process_init(&argc, &argv);
507   user_main_();
508   return 0;
509 }
510
511 int __attribute__ ((weak)) main(int argc, char **argv)
512 {
513   return smpi_main(smpi_simulated_main_, argc, argv);
514 }
515
516 int __attribute__ ((weak)) MAIN__()
517 {
518   return smpi_main(smpi_simulated_main_, xargc, xargv);
519 };
520 #endif
521
522 static void smpi_init_logs(){
523
524   /* Connect log categories.  See xbt/log.c */
525   XBT_LOG_CONNECT(smpi);        /* Keep this line as soon as possible in this
526                                    function: xbt_log_appender_file.c depends on it
527                                    DO NOT connect this in XBT or so, or it will be
528                                    useless to xbt_log_appender_file.c */
529 #ifdef HAVE_TRACING
530   XBT_LOG_CONNECT(instr_smpi);
531 #endif
532   XBT_LOG_CONNECT(smpi_base);
533   XBT_LOG_CONNECT(smpi_bench);
534   XBT_LOG_CONNECT(smpi_coll);
535   XBT_LOG_CONNECT(smpi_colls);
536   XBT_LOG_CONNECT(smpi_comm);
537   XBT_LOG_CONNECT(smpi_dvfs);
538   XBT_LOG_CONNECT(smpi_group);
539   XBT_LOG_CONNECT(smpi_kernel);
540   XBT_LOG_CONNECT(smpi_mpi);
541   XBT_LOG_CONNECT(smpi_mpi_dt);
542   XBT_LOG_CONNECT(smpi_pmpi);
543   XBT_LOG_CONNECT(smpi_replay);
544
545 }
546
547
548 static void smpi_init_options(){
549   int gather_id = find_coll_description(mpi_coll_gather_description,
550                                           sg_cfg_get_string("smpi/gather"));
551     mpi_coll_gather_fun = (int (*)(void *, int, MPI_Datatype,
552                                    void *, int, MPI_Datatype, int, MPI_Comm))
553         mpi_coll_gather_description[gather_id].coll;
554
555     int allgather_id = find_coll_description(mpi_coll_allgather_description,
556                                              sg_cfg_get_string("smpi/allgather"));
557     mpi_coll_allgather_fun = (int (*)(void *, int, MPI_Datatype,
558                                       void *, int, MPI_Datatype, MPI_Comm))
559         mpi_coll_allgather_description[allgather_id].coll;
560
561     int allgatherv_id = find_coll_description(mpi_coll_allgatherv_description,
562                                               sg_cfg_get_string("smpi/allgatherv"));
563     mpi_coll_allgatherv_fun = (int (*)(void *, int, MPI_Datatype, void *, int *,
564                                        int *, MPI_Datatype, MPI_Comm))
565         mpi_coll_allgatherv_description[allgatherv_id].coll;
566
567     int allreduce_id = find_coll_description(mpi_coll_allreduce_description,
568                                              sg_cfg_get_string("smpi/allreduce"));
569     mpi_coll_allreduce_fun = (int (*)(void *sbuf, void *rbuf, int rcount,
570                                       MPI_Datatype dtype, MPI_Op op,
571                                       MPI_Comm comm))
572         mpi_coll_allreduce_description[allreduce_id].coll;
573
574     int alltoall_id = find_coll_description(mpi_coll_alltoall_description,
575                                             sg_cfg_get_string("smpi/alltoall"));
576     mpi_coll_alltoall_fun = (int (*)(void *, int, MPI_Datatype,
577                                      void *, int, MPI_Datatype, MPI_Comm))
578         mpi_coll_alltoall_description[alltoall_id].coll;
579
580     int alltoallv_id = find_coll_description(mpi_coll_alltoallv_description,
581                                              sg_cfg_get_string("smpi/alltoallv"));
582     mpi_coll_alltoallv_fun = (int (*)(void *, int *, int *, MPI_Datatype,
583                                       void *, int *, int *, MPI_Datatype,
584                                       MPI_Comm))
585         mpi_coll_alltoallv_description[alltoallv_id].coll;
586
587     int bcast_id = find_coll_description(mpi_coll_bcast_description,
588                                          sg_cfg_get_string("smpi/bcast"));
589     mpi_coll_bcast_fun = (int (*)(void *buf, int count, MPI_Datatype datatype,
590                                   int root, MPI_Comm com))
591         mpi_coll_bcast_description[bcast_id].coll;
592
593     int reduce_id = find_coll_description(mpi_coll_reduce_description,
594                                           sg_cfg_get_string("smpi/reduce"));
595     mpi_coll_reduce_fun = (int (*)(void *buf, void *rbuf, int count,
596                                    MPI_Datatype datatype, MPI_Op op,
597                                    int root, MPI_Comm comm))
598         mpi_coll_reduce_description[reduce_id].coll;
599
600     int reduce_scatter_id =
601         find_coll_description(mpi_coll_reduce_scatter_description,
602                               sg_cfg_get_string("smpi/reduce_scatter"));
603     mpi_coll_reduce_scatter_fun = (int (*)(void *sbuf, void *rbuf, int *rcounts,
604                                            MPI_Datatype dtype, MPI_Op op,
605                                            MPI_Comm comm))
606         mpi_coll_reduce_scatter_description[reduce_scatter_id].coll;
607
608     int scatter_id = find_coll_description(mpi_coll_scatter_description,
609                                            sg_cfg_get_string("smpi/scatter"));
610     mpi_coll_scatter_fun = (int (*)(void *sendbuf, int sendcount,
611                                     MPI_Datatype sendtype, void *recvbuf,
612                                     int recvcount, MPI_Datatype recvtype,
613                                     int root, MPI_Comm comm))
614         mpi_coll_scatter_description[scatter_id].coll;
615
616     int barrier_id = find_coll_description(mpi_coll_barrier_description,
617                                            sg_cfg_get_string("smpi/barrier"));
618     mpi_coll_barrier_fun = (int (*)(MPI_Comm comm))
619         mpi_coll_barrier_description[barrier_id].coll;
620
621     smpi_cpu_threshold = sg_cfg_get_double("smpi/cpu_threshold");
622     smpi_running_power = sg_cfg_get_double("smpi/running_power");
623     smpi_privatize_global_variables = sg_cfg_get_boolean("smpi/privatize_global_variables");
624     if (smpi_cpu_threshold < 0)
625       smpi_cpu_threshold = DBL_MAX;
626
627 }
628
629 int smpi_main(int (*realmain) (int argc, char *argv[]), int argc, char *argv[])
630 {
631   srand(SMPI_RAND_SEED);
632
633   if (getenv("SMPI_PRETEND_CC") != NULL) {
634     /* Hack to ensure that smpicc can pretend to be a simple
635      * compiler. Particularly handy to pass it to the configuration tools */
636     return 0;
637   }
638
639   smpi_init_logs();
640
641 #ifdef HAVE_TRACING
642   TRACE_global_init(&argc, argv);
643
644   TRACE_add_start_function(TRACE_smpi_alloc);
645   TRACE_add_end_function(TRACE_smpi_release);
646 #endif
647
648   SIMIX_global_init(&argc, argv);
649
650   // parse the platform file: get the host list
651   SIMIX_create_environment(argv[1]);
652   SIMIX_comm_set_copy_data_callback(&smpi_comm_copy_buffer_callback);
653   SIMIX_function_register_default(realmain);
654   SIMIX_launch_application(argv[2]);
655
656   smpi_init_options();
657
658   smpi_global_init();
659
660   smpi_check_options();
661
662   if(smpi_privatize_global_variables)
663     smpi_initialize_global_memory_segments();
664
665   /* Clean IO before the run */
666   fflush(stdout);
667   fflush(stderr);
668
669   if (MC_is_active())
670     MC_do_the_modelcheck_for_real();
671   else
672     SIMIX_run();
673
674   if (sg_cfg_get_boolean("smpi/display_timing"))
675     XBT_INFO("Simulation time: %g seconds.", SIMIX_get_clock());
676
677   smpi_global_destroy();
678
679 #ifdef HAVE_TRACING
680   TRACE_end();
681 #endif
682
683   return 0;
684 }
685
686 // This function can be called from extern file, to initialize logs, options, and processes of smpi
687 // without the need of smpirun
688 void SMPI_init(){
689   smpi_init_logs();
690   smpi_init_options();
691   smpi_global_init();
692   smpi_check_options();
693 #ifdef HAVE_TRACING
694   if (TRACE_is_enabled() && TRACE_is_configured()) {
695     TRACE_smpi_alloc();
696   }
697 #endif
698   if(smpi_privatize_global_variables)
699     smpi_initialize_global_memory_segments();
700 }
701
702 void SMPI_finalize(){
703   smpi_global_destroy();
704 }