Logo AND Algorithmique Numérique Distribuée

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