Logo AND Algorithmique Numérique Distribuée

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