Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3eb02162af82eebc1735f305185f391b2380b118
[simgrid.git] / src / smpi / smpi_global.cpp
1 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <spawn.h>
7 #include <sys/types.h>
8 #include <sys/wait.h>
9 #include <dlfcn.h>
10
11 #include "mc/mc.h"
12 #include "private.h"
13 #include "private.hpp"
14 #include "simgrid/s4u/Mailbox.hpp"
15 #include "smpi/smpi_shared_malloc.hpp"
16 #include "simgrid/sg_config.h"
17 #include "src/kernel/activity/SynchroComm.hpp"
18 #include "src/mc/mc_record.h"
19 #include "src/mc/mc_replay.h"
20 #include "src/msg/msg_private.h"
21 #include "src/simix/smx_private.h"
22 #include "surf/surf.h"
23 #include "xbt/replay.hpp"
24 #include <xbt/config.hpp>
25
26 #include <float.h> /* DBL_MAX */
27 #include <fstream>
28 #include <map>
29 #include <stdint.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string>
33 #include <utility>
34 #include <vector>
35 #include <memory>
36
37 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
38 #include <boost/tokenizer.hpp>
39 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
40
41 #ifndef RTLD_DEEPBIND
42 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
43  * See https://www.akkadia.org/drepper/dsohowto.pdf
44  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
45 */
46 #define RTLD_DEEPBIND 0
47 #endif
48
49 /* Mac OSX does not have any header file providing that definition so we have to duplicate it here. Bummers. */
50 extern char** environ; /* we use it in posix_spawnp below */
51
52 #if HAVE_PAPI
53 #include "papi.h"
54 const char* papi_default_config_name = "default";
55
56 struct papi_process_data {
57   papi_counter_t counter_data;
58   int event_set;
59 };
60
61 #endif
62 std::unordered_map<std::string, double> location2speedup;
63
64 simgrid::smpi::Process **process_data = nullptr;
65 int process_count = 0;
66 int smpi_universe_size = 0;
67 int* index_to_process_data = nullptr;
68 extern double smpi_total_benched_time;
69 xbt_os_timer_t global_timer;
70 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
71 MPI_Errhandler *MPI_ERRORS_RETURN = nullptr;
72 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = nullptr;
73 MPI_Errhandler *MPI_ERRHANDLER_NULL = nullptr;
74 static simgrid::config::Flag<double> smpi_wtime_sleep(
75   "smpi/wtime", "Minimum time to inject inside a call to MPI_Wtime", 0.0);
76 static simgrid::config::Flag<double> smpi_init_sleep(
77   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
78
79 void (*smpi_comm_copy_data_callback) (smx_activity_t, void*, size_t) = &smpi_comm_copy_buffer_callback;
80
81
82
83 int smpi_process_count()
84 {
85   return process_count;
86 }
87
88 simgrid::smpi::Process* smpi_process()
89 {
90   simgrid::MsgActorExt* msgExt = static_cast<simgrid::MsgActorExt*>(SIMIX_process_self()->data);
91   return static_cast<simgrid::smpi::Process*>(msgExt->data);
92 }
93
94 simgrid::smpi::Process* smpi_process_remote(int index)
95 {
96   return process_data[index_to_process_data[index]];
97 }
98
99 MPI_Comm smpi_process_comm_self(){
100   return smpi_process()->comm_self();
101 }
102
103 void smpi_process_init(int *argc, char ***argv){
104   simgrid::smpi::Process::init(argc, argv);
105 }
106
107 int smpi_process_index(){
108   return smpi_process()->index();
109 }
110
111
112 int smpi_global_size()
113 {
114   char *value = getenv("SMPI_GLOBAL_SIZE");
115   xbt_assert(value,"Please set env var SMPI_GLOBAL_SIZE to the expected number of processes.");
116
117   return xbt_str_parse_int(value, "SMPI_GLOBAL_SIZE contains a non-numerical value: %s");
118 }
119
120 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
121 {
122   smpi_comm_copy_data_callback = callback;
123 }
124
125 static void print(std::vector<std::pair<size_t, size_t>> vec) {
126     fprintf(stderr, "{");
127     for(auto elt: vec) {
128         fprintf(stderr, "(0x%lx, 0x%lx),", elt.first, elt.second);
129     }
130     fprintf(stderr, "}\n");
131 }
132 static void memcpy_private(void *dest, const void *src, size_t n, std::vector<std::pair<size_t, size_t>> &private_blocks) {
133   for(auto block : private_blocks) {
134     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
135   }
136 }
137
138 static void check_blocks(std::vector<std::pair<size_t, size_t>> &private_blocks, size_t buff_size) {
139   for(auto block : private_blocks) {
140     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
141   }
142 }
143
144 void smpi_comm_copy_buffer_callback(smx_activity_t synchro, void *buff, size_t buff_size)
145 {
146   simgrid::kernel::activity::Comm *comm = dynamic_cast<simgrid::kernel::activity::Comm*>(synchro);
147   int src_shared=0, dst_shared=0;
148   size_t src_offset=0, dst_offset=0;
149   std::vector<std::pair<size_t, size_t>> src_private_blocks;
150   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
151   XBT_DEBUG("Copy the data over");
152   if((src_shared=smpi_is_shared(buff, src_private_blocks, &src_offset))) {
153     XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
154     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
155   }
156   else {
157     src_private_blocks.clear();
158     src_private_blocks.push_back(std::make_pair(0, buff_size));
159   }
160   if((dst_shared=smpi_is_shared((char*)comm->dst_buff, dst_private_blocks, &dst_offset))) {
161     XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff);
162     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
163   }
164   else {
165     dst_private_blocks.clear();
166     dst_private_blocks.push_back(std::make_pair(0, buff_size));
167   }
168 /*
169   fprintf(stderr, "size: 0x%x\n", buff_size);
170   fprintf(stderr, "src: ");
171   print(src_private_blocks);
172   fprintf(stderr, "src_offset = 0x%x\n", src_offset);
173   fprintf(stderr, "dst: ");
174   print(dst_private_blocks);
175   fprintf(stderr, "dst_offset = 0x%x\n", dst_offset);
176 */
177   check_blocks(src_private_blocks, buff_size);
178   check_blocks(dst_private_blocks, buff_size);
179   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
180 /*
181   fprintf(stderr, "Private blocks: ");
182   print(private_blocks);
183 */
184   check_blocks(private_blocks, buff_size);
185   void* tmpbuff=buff;
186   if((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && (static_cast<char*>(buff) >= smpi_start_data_exe)
187       && (static_cast<char*>(buff) < smpi_start_data_exe + smpi_size_data_exe )
188     ){
189        XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
190
191        smpi_switch_data_segment(
192            (static_cast<simgrid::smpi::Process*>((static_cast<simgrid::MsgActorExt*>(comm->src_proc->data)->data))->index()));
193        tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
194        memcpy_private(tmpbuff, buff, buff_size, private_blocks);
195   }
196
197   if((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && ((char*)comm->dst_buff >= smpi_start_data_exe)
198       && ((char*)comm->dst_buff < smpi_start_data_exe + smpi_size_data_exe )){
199        XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
200        smpi_switch_data_segment(
201            (static_cast<simgrid::smpi::Process*>((static_cast<simgrid::MsgActorExt*>(comm->dst_proc->data)->data))->index()));
202   }
203   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
204   memcpy_private(comm->dst_buff, tmpbuff, buff_size, private_blocks);
205
206   if (comm->detached) {
207     // if this is a detached send, the source buffer was duplicated by SMPI
208     // sender to make the original buffer available to the application ASAP
209     xbt_free(buff);
210     //It seems that the request is used after the call there this should be free somewhere else but where???
211     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
212     comm->src_buff = nullptr;
213   }
214   if(tmpbuff!=buff)xbt_free(tmpbuff);
215
216 }
217
218 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
219 {
220   /* nothing done in this version */
221 }
222
223 static void smpi_check_options(){
224   //check correctness of MPI parameters
225
226    xbt_assert(xbt_cfg_get_int("smpi/async-small-thresh") <= xbt_cfg_get_int("smpi/send-is-detached-thresh"));
227
228    if (xbt_cfg_is_default_value("smpi/host-speed")) {
229      XBT_INFO("You did not set the power of the host running the simulation.  "
230               "The timings will certainly not be accurate.  "
231               "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value."
232               "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more information.");
233    }
234
235    xbt_assert(xbt_cfg_get_double("smpi/cpu-threshold") >=0,
236        "The 'smpi/cpu-threshold' option cannot have negative values [anymore]. If you want to discard "
237        "the simulation of any computation, please use 'smpi/simulate-computation:no' instead.");
238 }
239
240 int smpi_enabled() {
241   return process_data != nullptr;
242 }
243
244 void smpi_global_init()
245 {
246   MPI_Group group;
247
248   if (!MC_is_active()) {
249     global_timer = xbt_os_timer_new();
250     xbt_os_walltimer_start(global_timer);
251   }
252
253   if (xbt_cfg_get_string("smpi/comp-adjustment-file")[0] != '\0') { 
254     std::string filename {xbt_cfg_get_string("smpi/comp-adjustment-file")};
255     std::ifstream fstream(filename);
256     if (!fstream.is_open()) {
257       xbt_die("Could not open file %s. Does it exist?", filename.c_str());
258     }
259
260     std::string line;
261     typedef boost::tokenizer< boost::escaped_list_separator<char>> Tokenizer;
262     std::getline(fstream, line); // Skip the header line
263     while (std::getline(fstream, line)) {
264       Tokenizer tok(line);
265       Tokenizer::iterator it  = tok.begin();
266       Tokenizer::iterator end = std::next(tok.begin());
267
268       std::string location = *it;
269       boost::trim(location);
270       location2speedup.insert(std::pair<std::string, double>(location, std::stod(*end)));
271     }
272   }
273
274 #if HAVE_PAPI
275   // This map holds for each computation unit (such as "default" or "process1" etc.)
276   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
277   // and the (computed) event_set.
278   std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
279
280   if (xbt_cfg_get_string("smpi/papi-events")[0] != '\0') {
281     if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
282       XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
283                 " Expected version is %i",
284                 PAPI_VER_CURRENT);
285
286     typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
287     boost::char_separator<char> separator_units(";");
288     std::string str = std::string(xbt_cfg_get_string("smpi/papi-events"));
289     Tokenizer tokens(str, separator_units);
290
291     // Iterate over all the computational units. This could be
292     // processes, hosts, threads, ranks... You name it. I'm not exactly
293     // sure what we will support eventually, so I'll leave it at the
294     // general term "units".
295     for (auto& unit_it : tokens) {
296       boost::char_separator<char> separator_events(":");
297       Tokenizer event_tokens(unit_it, separator_events);
298
299       int event_set = PAPI_NULL;
300       if (PAPI_create_eventset(&event_set) != PAPI_OK) {
301         // TODO: Should this let the whole simulation die?
302         XBT_CRITICAL("Could not create PAPI event set during init.");
303       }
304
305       // NOTE: We cannot use a map here, as we must obey the order of the counters
306       // This is important for PAPI: We need to map the values of counters back
307       // to the event_names (so, when PAPI_read() has finished)!
308       papi_counter_t counters2values;
309
310       // Iterate over all counters that were specified for this specific
311       // unit.
312       // Note that we need to remove the name of the unit
313       // (that could also be the "default" value), which always comes first.
314       // Hence, we start at ++(events.begin())!
315       for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); events_it++) {
316
317         int event_code   = PAPI_NULL;
318         char* event_name = const_cast<char*>((*events_it).c_str());
319         if (PAPI_event_name_to_code(event_name, &event_code) == PAPI_OK) {
320           if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
321             XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
322             continue;
323           } else {
324             XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
325           }
326         } else {
327           XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
328           continue;
329         }
330
331         counters2values.push_back(
332             // We cannot just pass *events_it, as this is of type const basic_string
333             std::make_pair<std::string, long long>(std::string(*events_it), 0));
334       }
335
336       std::string unit_name    = *(event_tokens.begin());
337       papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
338
339       units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
340     }
341   }
342 #endif
343
344   int smpirun = 0;
345   msg_bar_t finalization_barrier = nullptr;
346   if (process_count == 0){
347     process_count = SIMIX_process_count();
348     smpirun=1;
349     finalization_barrier = MSG_barrier_init(process_count);
350   }
351   smpi_universe_size = process_count;
352   process_data       = new simgrid::smpi::Process*[process_count];
353   for (int i = 0; i < process_count; i++) {
354     process_data[i] = new simgrid::smpi::Process(i, finalization_barrier);
355   }
356   //if the process was launched through smpirun script we generate a global mpi_comm_world
357   //if not, we let MPI_COMM_NULL, and the comm world will be private to each mpi instance
358   if (smpirun) {
359     group = new  simgrid::smpi::Group(process_count);
360     MPI_COMM_WORLD = new  simgrid::smpi::Comm(group, nullptr);
361     MPI_Attr_put(MPI_COMM_WORLD, MPI_UNIVERSE_SIZE, reinterpret_cast<void *>(process_count));
362
363     for (int i = 0; i < process_count; i++)
364       group->set_mapping(i, i);
365   }
366 }
367
368 void smpi_global_destroy()
369 {
370   int count = smpi_process_count();
371
372   smpi_bench_destroy();
373   smpi_shared_destroy();
374   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
375       delete MPI_COMM_WORLD->group();
376       MSG_barrier_destroy(process_data[0]->finalization_barrier());
377   }else{
378       smpi_deployment_cleanup_instances();
379   }
380   for (int i = 0; i < count; i++) {
381     if(process_data[i]->comm_self()!=MPI_COMM_NULL){
382       simgrid::smpi::Comm::destroy(process_data[i]->comm_self());
383     }
384     if(process_data[i]->comm_intra()!=MPI_COMM_NULL){
385       simgrid::smpi::Comm::destroy(process_data[i]->comm_intra());
386     }
387     xbt_os_timer_free(process_data[i]->timer());
388     xbt_mutex_destroy(process_data[i]->mailboxes_mutex());
389     delete process_data[i];
390   }
391   delete[] process_data;
392   process_data = nullptr;
393
394   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
395     MPI_COMM_WORLD->cleanup_smp();
396     MPI_COMM_WORLD->cleanup_attr<simgrid::smpi::Comm>();
397     if(simgrid::smpi::Colls::smpi_coll_cleanup_callback!=nullptr)
398       simgrid::smpi::Colls::smpi_coll_cleanup_callback();
399     delete MPI_COMM_WORLD;
400   }
401
402   MPI_COMM_WORLD = MPI_COMM_NULL;
403
404   if (!MC_is_active()) {
405     xbt_os_timer_free(global_timer);
406   }
407
408   xbt_free(index_to_process_data);
409   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
410     smpi_destroy_global_memory_segments();
411   smpi_free_static();
412 }
413
414 extern "C" {
415
416 static void smpi_init_logs(){
417
418   /* Connect log categories.  See xbt/log.c */
419
420   XBT_LOG_CONNECT(smpi);  /* Keep this line as soon as possible in this function: xbt_log_appender_file.c depends on it
421                              DO NOT connect this in XBT or so, or it will be useless to xbt_log_appender_file.c */
422   XBT_LOG_CONNECT(instr_smpi);
423   XBT_LOG_CONNECT(smpi_bench);
424   XBT_LOG_CONNECT(smpi_coll);
425   XBT_LOG_CONNECT(smpi_colls);
426   XBT_LOG_CONNECT(smpi_comm);
427   XBT_LOG_CONNECT(smpi_datatype);
428   XBT_LOG_CONNECT(smpi_dvfs);
429   XBT_LOG_CONNECT(smpi_group);
430   XBT_LOG_CONNECT(smpi_kernel);
431   XBT_LOG_CONNECT(smpi_mpi);
432   XBT_LOG_CONNECT(smpi_memory);
433   XBT_LOG_CONNECT(smpi_op);
434   XBT_LOG_CONNECT(smpi_pmpi);
435   XBT_LOG_CONNECT(smpi_request);
436   XBT_LOG_CONNECT(smpi_replay);
437   XBT_LOG_CONNECT(smpi_rma);
438   XBT_LOG_CONNECT(smpi_shared);
439   XBT_LOG_CONNECT(smpi_utils);
440 }
441 }
442
443 static void smpi_init_options(){
444
445     simgrid::smpi::Colls::set_collectives();
446     simgrid::smpi::Colls::smpi_coll_cleanup_callback=nullptr;
447     smpi_cpu_threshold = xbt_cfg_get_double("smpi/cpu-threshold");
448     smpi_host_speed = xbt_cfg_get_double("smpi/host-speed");
449     const char* smpi_privatize_option = xbt_cfg_get_string("smpi/privatize-global-variables");
450     if (std::strcmp(smpi_privatize_option, "no") == 0)
451       smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
452     else if (std::strcmp(smpi_privatize_option, "yes") == 0)
453       smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
454     else if (std::strcmp(smpi_privatize_option, "mmap") == 0)
455       smpi_privatize_global_variables = SMPI_PRIVATIZE_MMAP;
456     else if (std::strcmp(smpi_privatize_option, "dlopen") == 0)
457       smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
458
459     // Some compatibility stuff:
460     else if (std::strcmp(smpi_privatize_option, "1") == 0)
461       smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
462     else if (std::strcmp(smpi_privatize_option, "0") == 0)
463       smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
464
465     else
466       xbt_die("Invalid value for smpi/privatize-global-variables: %s",
467         smpi_privatize_option);
468
469     if (smpi_cpu_threshold < 0)
470       smpi_cpu_threshold = DBL_MAX;
471
472     char* val = xbt_cfg_get_string("smpi/shared-malloc");
473     if (!strcasecmp(val, "yes") || !strcmp(val, "1") || !strcasecmp(val, "on") || !strcasecmp(val, "global")) {
474       smpi_cfg_shared_malloc = shmalloc_global;
475     } else if (!strcasecmp(val, "local")) {
476       smpi_cfg_shared_malloc = shmalloc_local;
477     } else if (!strcasecmp(val, "no") || !strcmp(val, "0") || !strcasecmp(val, "off")) {
478       smpi_cfg_shared_malloc = shmalloc_none;
479     } else {
480       xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
481               val);
482     }
483 }
484
485 static int execute_command(const char * const argv[])
486 {
487   pid_t pid;
488   int status;
489   if (posix_spawnp(&pid, argv[0], nullptr, nullptr, (char* const*) argv, environ) != 0)
490     return 127;
491   if (waitpid(pid, &status, 0) != pid)
492     return 127;
493   return status;
494 }
495
496 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
497 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
498 typedef void (* smpi_fortran_entry_point_type)(void);
499
500 static int smpi_run_entry_point(smpi_entry_point_type entry_point, std::vector<std::string> args)
501 {
502   const int argc = args.size();
503   std::unique_ptr<char*[]> argv(new char*[argc + 1]);
504   for (int i = 0; i != argc; ++i)
505     argv[i] = args[i].empty() ? const_cast<char*>(""): &args[i].front();
506   argv[argc] = nullptr;
507
508   int res = entry_point(argc, argv.get());
509   if (res != 0){
510     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
511     smpi_process()->set_return_value(res);
512   }
513   return 0;
514 }
515
516 // TODO, remove the number of functions involved here
517 static smpi_entry_point_type smpi_resolve_function(void* handle)
518 {
519   smpi_fortran_entry_point_type entry_point2 =
520     (smpi_fortran_entry_point_type) dlsym(handle, "user_main_");
521   if (entry_point2 != nullptr) {
522     // fprintf(stderr, "EP user_main_=%p\n", entry_point2);
523     return [entry_point2](int argc, char** argv) {
524       smpi_process_init(&argc, &argv);
525       entry_point2();
526       return 0;
527     };
528   }
529
530   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type) dlsym(handle, "main");
531   if (entry_point != nullptr) {
532     // fprintf(stderr, "EP main=%p\n", entry_point);
533     return entry_point;
534   }
535
536   return smpi_entry_point_type();
537 }
538
539 int smpi_main(const char* executable, int argc, char *argv[])
540 {
541   srand(SMPI_RAND_SEED);
542
543   if (getenv("SMPI_PRETEND_CC") != nullptr) {
544     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
545      * configuration tools */
546     return 0;
547   }
548   smpi_init_logs();
549
550   TRACE_global_init(&argc, argv);
551   TRACE_add_start_function(TRACE_smpi_alloc);
552   TRACE_add_end_function(TRACE_smpi_release);
553
554   SIMIX_global_init(&argc, argv);
555   MSG_init(&argc,argv);
556
557   SMPI_switch_data_segment = &smpi_switch_data_segment;
558
559   smpi_init_options();
560
561   // parse the platform file: get the host list
562   SIMIX_create_environment(argv[1]);
563   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
564
565   static std::size_t rank = 0;
566
567   if (smpi_privatize_global_variables == SMPI_PRIVATIZE_DLOPEN) {
568
569     std::string executable_copy = executable;
570     simix_global->default_function = [executable_copy](std::vector<std::string> args) {
571       return std::function<void()>([executable_copy, args] {
572
573         // Copy the dynamic library:
574         std::string target_executable = executable_copy
575           + "_" + std::to_string(getpid())
576           + "_" + std::to_string(rank++) + ".so";
577         // TODO, execute directly instead of relying on cp
578         const char* command1 [] = {
579           "cp", "--reflink=auto", "--", executable_copy.c_str(), target_executable.c_str(),
580           nullptr
581         };
582         const char* command2 [] = {
583           "cp", "--", executable_copy.c_str(), target_executable.c_str(),
584           nullptr
585         };
586         if (execute_command(command1) != 0 && execute_command(command2) != 0)
587           xbt_die("copy failed");
588
589         // Load the copy and resolve the entry point:
590         void* handle = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
591         unlink(target_executable.c_str());
592         if (handle == nullptr)
593           xbt_die("dlopen failed");
594         smpi_entry_point_type entry_point = smpi_resolve_function(handle);
595         if (!entry_point)
596           xbt_die("Could not resolve entry point");
597
598           smpi_run_entry_point(entry_point, args);
599       });
600     };
601
602   }
603   else {
604
605     // Load the dynamic library and resolve the entry point:
606     void* handle = dlopen(executable, RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
607     if (handle == nullptr)
608       xbt_die("dlopen failed for %s", executable);
609     smpi_entry_point_type entry_point = smpi_resolve_function(handle);
610     if (!entry_point)
611       xbt_die("main not found in %s", executable);
612     // TODO, register the executable for SMPI privatization
613
614     // Execute the same entry point for each simulated process:
615     simix_global->default_function = [entry_point](std::vector<std::string> args) {
616       return std::function<void()>([entry_point, args] {
617         smpi_run_entry_point(entry_point, args);
618       });
619     };
620
621   }
622
623   SIMIX_launch_application(argv[2]);
624
625   smpi_global_init();
626
627   smpi_check_options();
628
629   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
630     smpi_initialize_global_memory_segments();
631
632   /* Clean IO before the run */
633   fflush(stdout);
634   fflush(stderr);
635
636   if (MC_is_active()) {
637     MC_run();
638   } else {
639   
640     SIMIX_run();
641
642     xbt_os_walltimer_stop(global_timer);
643     if (xbt_cfg_get_boolean("smpi/display-timing")){
644       double global_time = xbt_os_timer_elapsed(global_timer);
645       XBT_INFO("Simulated time: %g seconds. \n\n"
646           "The simulation took %g seconds (after parsing and platform setup)\n"
647           "%g seconds were actual computation of the application",
648           SIMIX_get_clock(), global_time , smpi_total_benched_time);
649           
650       if (smpi_total_benched_time/global_time>=0.75)
651       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
652       "You may want to use sampling functions or trace replay to reduce this.");
653     }
654   }
655   int count = smpi_process_count();
656   int i, ret=0;
657   for (i = 0; i < count; i++) {
658     if(process_data[i]->return_value()!=0){
659       ret=process_data[i]->return_value();//return first non 0 value
660       break;
661     }
662   }
663   smpi_global_destroy();
664
665   TRACE_end();
666
667   return ret;
668 }
669
670 // This function can be called from extern file, to initialize logs, options, and processes of smpi
671 // without the need of smpirun
672 void SMPI_init(){
673   smpi_init_logs();
674   smpi_init_options();
675   smpi_global_init();
676   smpi_check_options();
677   if (TRACE_is_enabled() && TRACE_is_configured())
678     TRACE_smpi_alloc();
679   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
680     smpi_initialize_global_memory_segments();
681 }
682
683 void SMPI_finalize(){
684   smpi_global_destroy();
685 }
686
687 void smpi_mpi_init() {
688   if(smpi_init_sleep > 0) 
689     simcall_process_sleep(smpi_init_sleep);
690 }
691
692 double smpi_mpi_wtime(){
693   double time;
694   if (smpi_process()->initialized() != 0 && smpi_process()->finalized() == 0 && smpi_process()->sampling() == 0) {
695     smpi_bench_end();
696     time = SIMIX_get_clock();
697     // to avoid deadlocks if used as a break condition, such as
698     //     while (MPI_Wtime(...) < time_limit) {
699     //       ....
700     //     }
701     // because the time will not normally advance when only calls to MPI_Wtime
702     // are made -> deadlock (MPI_Wtime never reaches the time limit)
703     if(smpi_wtime_sleep > 0) 
704       simcall_process_sleep(smpi_wtime_sleep);
705     smpi_bench_begin();
706   } else {
707     time = SIMIX_get_clock();
708   }
709   return time;
710 }
711