Logo AND Algorithmique Numérique Distribuée

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