Logo AND Algorithmique Numérique Distribuée

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