Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove useless code.
[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   check_blocks(src_private_blocks, buff_size);
169   check_blocks(dst_private_blocks, buff_size);
170   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
171   check_blocks(private_blocks, buff_size);
172   void* tmpbuff=buff;
173   if((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && (static_cast<char*>(buff) >= smpi_start_data_exe)
174       && (static_cast<char*>(buff) < smpi_start_data_exe + smpi_size_data_exe )
175     ){
176        XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
177
178        smpi_switch_data_segment(
179            (static_cast<simgrid::smpi::Process*>((static_cast<simgrid::MsgActorExt*>(comm->src_proc->data)->data))->index()));
180        tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
181        memcpy_private(tmpbuff, buff, buff_size, private_blocks);
182   }
183
184   if((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && ((char*)comm->dst_buff >= smpi_start_data_exe)
185       && ((char*)comm->dst_buff < smpi_start_data_exe + smpi_size_data_exe )){
186        XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
187        smpi_switch_data_segment(
188            (static_cast<simgrid::smpi::Process*>((static_cast<simgrid::MsgActorExt*>(comm->dst_proc->data)->data))->index()));
189   }
190   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
191   memcpy_private(comm->dst_buff, tmpbuff, buff_size, private_blocks);
192
193   if (comm->detached) {
194     // if this is a detached send, the source buffer was duplicated by SMPI
195     // sender to make the original buffer available to the application ASAP
196     xbt_free(buff);
197     //It seems that the request is used after the call there this should be free somewhere else but where???
198     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
199     comm->src_buff = nullptr;
200   }
201   if(tmpbuff!=buff)xbt_free(tmpbuff);
202
203 }
204
205 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
206 {
207   /* nothing done in this version */
208 }
209
210 static void smpi_check_options(){
211   //check correctness of MPI parameters
212
213    xbt_assert(xbt_cfg_get_int("smpi/async-small-thresh") <= xbt_cfg_get_int("smpi/send-is-detached-thresh"));
214
215    if (xbt_cfg_is_default_value("smpi/host-speed")) {
216      XBT_INFO("You did not set the power of the host running the simulation.  "
217               "The timings will certainly not be accurate.  "
218               "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value."
219               "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more information.");
220    }
221
222    xbt_assert(xbt_cfg_get_double("smpi/cpu-threshold") >=0,
223        "The 'smpi/cpu-threshold' option cannot have negative values [anymore]. If you want to discard "
224        "the simulation of any computation, please use 'smpi/simulate-computation:no' instead.");
225 }
226
227 int smpi_enabled() {
228   return process_data != nullptr;
229 }
230
231 void smpi_global_init()
232 {
233   MPI_Group group;
234
235   if (!MC_is_active()) {
236     global_timer = xbt_os_timer_new();
237     xbt_os_walltimer_start(global_timer);
238   }
239
240   if (xbt_cfg_get_string("smpi/comp-adjustment-file")[0] != '\0') { 
241     std::string filename {xbt_cfg_get_string("smpi/comp-adjustment-file")};
242     std::ifstream fstream(filename);
243     if (!fstream.is_open()) {
244       xbt_die("Could not open file %s. Does it exist?", filename.c_str());
245     }
246
247     std::string line;
248     typedef boost::tokenizer< boost::escaped_list_separator<char>> Tokenizer;
249     std::getline(fstream, line); // Skip the header line
250     while (std::getline(fstream, line)) {
251       Tokenizer tok(line);
252       Tokenizer::iterator it  = tok.begin();
253       Tokenizer::iterator end = std::next(tok.begin());
254
255       std::string location = *it;
256       boost::trim(location);
257       location2speedup.insert(std::pair<std::string, double>(location, std::stod(*end)));
258     }
259   }
260
261 #if HAVE_PAPI
262   // This map holds for each computation unit (such as "default" or "process1" etc.)
263   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
264   // and the (computed) event_set.
265   std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
266
267   if (xbt_cfg_get_string("smpi/papi-events")[0] != '\0') {
268     if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
269       XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
270                 " Expected version is %i",
271                 PAPI_VER_CURRENT);
272
273     typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
274     boost::char_separator<char> separator_units(";");
275     std::string str = std::string(xbt_cfg_get_string("smpi/papi-events"));
276     Tokenizer tokens(str, separator_units);
277
278     // Iterate over all the computational units. This could be
279     // processes, hosts, threads, ranks... You name it. I'm not exactly
280     // sure what we will support eventually, so I'll leave it at the
281     // general term "units".
282     for (auto& unit_it : tokens) {
283       boost::char_separator<char> separator_events(":");
284       Tokenizer event_tokens(unit_it, separator_events);
285
286       int event_set = PAPI_NULL;
287       if (PAPI_create_eventset(&event_set) != PAPI_OK) {
288         // TODO: Should this let the whole simulation die?
289         XBT_CRITICAL("Could not create PAPI event set during init.");
290       }
291
292       // NOTE: We cannot use a map here, as we must obey the order of the counters
293       // This is important for PAPI: We need to map the values of counters back
294       // to the event_names (so, when PAPI_read() has finished)!
295       papi_counter_t counters2values;
296
297       // Iterate over all counters that were specified for this specific
298       // unit.
299       // Note that we need to remove the name of the unit
300       // (that could also be the "default" value), which always comes first.
301       // Hence, we start at ++(events.begin())!
302       for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); events_it++) {
303
304         int event_code   = PAPI_NULL;
305         char* event_name = const_cast<char*>((*events_it).c_str());
306         if (PAPI_event_name_to_code(event_name, &event_code) == PAPI_OK) {
307           if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
308             XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
309             continue;
310           } else {
311             XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
312           }
313         } else {
314           XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
315           continue;
316         }
317
318         counters2values.push_back(
319             // We cannot just pass *events_it, as this is of type const basic_string
320             std::make_pair<std::string, long long>(std::string(*events_it), 0));
321       }
322
323       std::string unit_name    = *(event_tokens.begin());
324       papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
325
326       units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
327     }
328   }
329 #endif
330
331   int smpirun = 0;
332   msg_bar_t finalization_barrier = nullptr;
333   if (process_count == 0){
334     process_count = SIMIX_process_count();
335     smpirun=1;
336     finalization_barrier = MSG_barrier_init(process_count);
337   }
338   smpi_universe_size = process_count;
339   process_data       = new simgrid::smpi::Process*[process_count];
340   for (int i = 0; i < process_count; i++) {
341     process_data[i] = new simgrid::smpi::Process(i, finalization_barrier);
342   }
343   //if the process was launched through smpirun script we generate a global mpi_comm_world
344   //if not, we let MPI_COMM_NULL, and the comm world will be private to each mpi instance
345   if (smpirun) {
346     group = new  simgrid::smpi::Group(process_count);
347     MPI_COMM_WORLD = new  simgrid::smpi::Comm(group, nullptr);
348     MPI_Attr_put(MPI_COMM_WORLD, MPI_UNIVERSE_SIZE, reinterpret_cast<void *>(process_count));
349
350     for (int i = 0; i < process_count; i++)
351       group->set_mapping(i, i);
352   }
353 }
354
355 void smpi_global_destroy()
356 {
357   int count = smpi_process_count();
358
359   smpi_bench_destroy();
360   smpi_shared_destroy();
361   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
362       delete MPI_COMM_WORLD->group();
363       MSG_barrier_destroy(process_data[0]->finalization_barrier());
364   }else{
365       smpi_deployment_cleanup_instances();
366   }
367   for (int i = 0; i < count; i++) {
368     if(process_data[i]->comm_self()!=MPI_COMM_NULL){
369       simgrid::smpi::Comm::destroy(process_data[i]->comm_self());
370     }
371     if(process_data[i]->comm_intra()!=MPI_COMM_NULL){
372       simgrid::smpi::Comm::destroy(process_data[i]->comm_intra());
373     }
374     xbt_os_timer_free(process_data[i]->timer());
375     xbt_mutex_destroy(process_data[i]->mailboxes_mutex());
376     delete process_data[i];
377   }
378   delete[] process_data;
379   process_data = nullptr;
380
381   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
382     MPI_COMM_WORLD->cleanup_smp();
383     MPI_COMM_WORLD->cleanup_attr<simgrid::smpi::Comm>();
384     if(simgrid::smpi::Colls::smpi_coll_cleanup_callback!=nullptr)
385       simgrid::smpi::Colls::smpi_coll_cleanup_callback();
386     delete MPI_COMM_WORLD;
387   }
388
389   MPI_COMM_WORLD = MPI_COMM_NULL;
390
391   if (!MC_is_active()) {
392     xbt_os_timer_free(global_timer);
393   }
394
395   xbt_free(index_to_process_data);
396   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
397     smpi_destroy_global_memory_segments();
398   smpi_free_static();
399 }
400
401 extern "C" {
402
403 static void smpi_init_logs(){
404
405   /* Connect log categories.  See xbt/log.c */
406
407   XBT_LOG_CONNECT(smpi);  /* Keep this line as soon as possible in this function: xbt_log_appender_file.c depends on it
408                              DO NOT connect this in XBT or so, or it will be useless to xbt_log_appender_file.c */
409   XBT_LOG_CONNECT(instr_smpi);
410   XBT_LOG_CONNECT(smpi_bench);
411   XBT_LOG_CONNECT(smpi_coll);
412   XBT_LOG_CONNECT(smpi_colls);
413   XBT_LOG_CONNECT(smpi_comm);
414   XBT_LOG_CONNECT(smpi_datatype);
415   XBT_LOG_CONNECT(smpi_dvfs);
416   XBT_LOG_CONNECT(smpi_group);
417   XBT_LOG_CONNECT(smpi_kernel);
418   XBT_LOG_CONNECT(smpi_mpi);
419   XBT_LOG_CONNECT(smpi_memory);
420   XBT_LOG_CONNECT(smpi_op);
421   XBT_LOG_CONNECT(smpi_pmpi);
422   XBT_LOG_CONNECT(smpi_request);
423   XBT_LOG_CONNECT(smpi_replay);
424   XBT_LOG_CONNECT(smpi_rma);
425   XBT_LOG_CONNECT(smpi_shared);
426   XBT_LOG_CONNECT(smpi_utils);
427 }
428 }
429
430 static void smpi_init_options(){
431
432     simgrid::smpi::Colls::set_collectives();
433     simgrid::smpi::Colls::smpi_coll_cleanup_callback=nullptr;
434     smpi_cpu_threshold = xbt_cfg_get_double("smpi/cpu-threshold");
435     smpi_host_speed = xbt_cfg_get_double("smpi/host-speed");
436     const char* smpi_privatize_option = xbt_cfg_get_string("smpi/privatize-global-variables");
437     if (std::strcmp(smpi_privatize_option, "no") == 0)
438       smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
439     else if (std::strcmp(smpi_privatize_option, "yes") == 0)
440       smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
441     else if (std::strcmp(smpi_privatize_option, "mmap") == 0)
442       smpi_privatize_global_variables = SMPI_PRIVATIZE_MMAP;
443     else if (std::strcmp(smpi_privatize_option, "dlopen") == 0)
444       smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
445
446     // Some compatibility stuff:
447     else if (std::strcmp(smpi_privatize_option, "1") == 0)
448       smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
449     else if (std::strcmp(smpi_privatize_option, "0") == 0)
450       smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
451
452     else
453       xbt_die("Invalid value for smpi/privatize-global-variables: %s",
454         smpi_privatize_option);
455
456     if (smpi_cpu_threshold < 0)
457       smpi_cpu_threshold = DBL_MAX;
458
459     char* val = xbt_cfg_get_string("smpi/shared-malloc");
460     if (!strcasecmp(val, "yes") || !strcmp(val, "1") || !strcasecmp(val, "on") || !strcasecmp(val, "global")) {
461       smpi_cfg_shared_malloc = shmalloc_global;
462     } else if (!strcasecmp(val, "local")) {
463       smpi_cfg_shared_malloc = shmalloc_local;
464     } else if (!strcasecmp(val, "no") || !strcmp(val, "0") || !strcasecmp(val, "off")) {
465       smpi_cfg_shared_malloc = shmalloc_none;
466     } else {
467       xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
468               val);
469     }
470 }
471
472 static int execute_command(const char * const argv[])
473 {
474   pid_t pid;
475   int status;
476   if (posix_spawnp(&pid, argv[0], nullptr, nullptr, (char* const*) argv, environ) != 0)
477     return 127;
478   if (waitpid(pid, &status, 0) != pid)
479     return 127;
480   return status;
481 }
482
483 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
484 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
485 typedef void (* smpi_fortran_entry_point_type)(void);
486
487 static int smpi_run_entry_point(smpi_entry_point_type entry_point, std::vector<std::string> args)
488 {
489   const int argc = args.size();
490   std::unique_ptr<char*[]> argv(new char*[argc + 1]);
491   for (int i = 0; i != argc; ++i)
492     argv[i] = args[i].empty() ? const_cast<char*>(""): &args[i].front();
493   argv[argc] = nullptr;
494
495   int res = entry_point(argc, argv.get());
496   if (res != 0){
497     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
498     smpi_process()->set_return_value(res);
499   }
500   return 0;
501 }
502
503 // TODO, remove the number of functions involved here
504 static smpi_entry_point_type smpi_resolve_function(void* handle)
505 {
506   smpi_fortran_entry_point_type entry_point2 =
507     (smpi_fortran_entry_point_type) dlsym(handle, "user_main_");
508   if (entry_point2 != nullptr) {
509     // fprintf(stderr, "EP user_main_=%p\n", entry_point2);
510     return [entry_point2](int argc, char** argv) {
511       smpi_process_init(&argc, &argv);
512       entry_point2();
513       return 0;
514     };
515   }
516
517   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type) dlsym(handle, "main");
518   if (entry_point != nullptr) {
519     // fprintf(stderr, "EP main=%p\n", entry_point);
520     return entry_point;
521   }
522
523   return smpi_entry_point_type();
524 }
525
526 int smpi_main(const char* executable, int argc, char *argv[])
527 {
528   srand(SMPI_RAND_SEED);
529
530   if (getenv("SMPI_PRETEND_CC") != nullptr) {
531     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
532      * configuration tools */
533     return 0;
534   }
535   smpi_init_logs();
536
537   TRACE_global_init(&argc, argv);
538   TRACE_add_start_function(TRACE_smpi_alloc);
539   TRACE_add_end_function(TRACE_smpi_release);
540
541   SIMIX_global_init(&argc, argv);
542   MSG_init(&argc,argv);
543
544   SMPI_switch_data_segment = &smpi_switch_data_segment;
545
546   smpi_init_options();
547
548   // parse the platform file: get the host list
549   SIMIX_create_environment(argv[1]);
550   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
551
552   static std::size_t rank = 0;
553
554   if (smpi_privatize_global_variables == SMPI_PRIVATIZE_DLOPEN) {
555
556     std::string executable_copy = executable;
557     simix_global->default_function = [executable_copy](std::vector<std::string> args) {
558       return std::function<void()>([executable_copy, args] {
559
560         // Copy the dynamic library:
561         std::string target_executable = executable_copy
562           + "_" + std::to_string(getpid())
563           + "_" + std::to_string(rank++) + ".so";
564         // TODO, execute directly instead of relying on cp
565         const char* command1 [] = {
566           "cp", "--reflink=auto", "--", executable_copy.c_str(), target_executable.c_str(),
567           nullptr
568         };
569         const char* command2 [] = {
570           "cp", "--", executable_copy.c_str(), target_executable.c_str(),
571           nullptr
572         };
573         if (execute_command(command1) != 0 && execute_command(command2) != 0)
574           xbt_die("copy failed");
575
576         // Load the copy and resolve the entry point:
577         void* handle = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
578         unlink(target_executable.c_str());
579         if (handle == nullptr)
580           xbt_die("dlopen failed");
581         smpi_entry_point_type entry_point = smpi_resolve_function(handle);
582         if (!entry_point)
583           xbt_die("Could not resolve entry point");
584
585           smpi_run_entry_point(entry_point, args);
586       });
587     };
588
589   }
590   else {
591
592     // Load the dynamic library and resolve the entry point:
593     void* handle = dlopen(executable, RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
594     if (handle == nullptr)
595       xbt_die("dlopen failed for %s", executable);
596     smpi_entry_point_type entry_point = smpi_resolve_function(handle);
597     if (!entry_point)
598       xbt_die("main not found in %s", executable);
599     // TODO, register the executable for SMPI privatization
600
601     // Execute the same entry point for each simulated process:
602     simix_global->default_function = [entry_point](std::vector<std::string> args) {
603       return std::function<void()>([entry_point, args] {
604         smpi_run_entry_point(entry_point, args);
605       });
606     };
607
608   }
609
610   SIMIX_launch_application(argv[2]);
611
612   smpi_global_init();
613
614   smpi_check_options();
615
616   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
617     smpi_initialize_global_memory_segments();
618
619   /* Clean IO before the run */
620   fflush(stdout);
621   fflush(stderr);
622
623   if (MC_is_active()) {
624     MC_run();
625   } else {
626   
627     SIMIX_run();
628
629     xbt_os_walltimer_stop(global_timer);
630     if (xbt_cfg_get_boolean("smpi/display-timing")){
631       double global_time = xbt_os_timer_elapsed(global_timer);
632       XBT_INFO("Simulated time: %g seconds. \n\n"
633           "The simulation took %g seconds (after parsing and platform setup)\n"
634           "%g seconds were actual computation of the application",
635           SIMIX_get_clock(), global_time , smpi_total_benched_time);
636           
637       if (smpi_total_benched_time/global_time>=0.75)
638       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
639       "You may want to use sampling functions or trace replay to reduce this.");
640     }
641   }
642   int count = smpi_process_count();
643   int i, ret=0;
644   for (i = 0; i < count; i++) {
645     if(process_data[i]->return_value()!=0){
646       ret=process_data[i]->return_value();//return first non 0 value
647       break;
648     }
649   }
650   smpi_global_destroy();
651
652   TRACE_end();
653
654   return ret;
655 }
656
657 // This function can be called from extern file, to initialize logs, options, and processes of smpi
658 // without the need of smpirun
659 void SMPI_init(){
660   smpi_init_logs();
661   smpi_init_options();
662   smpi_global_init();
663   smpi_check_options();
664   if (TRACE_is_enabled() && TRACE_is_configured())
665     TRACE_smpi_alloc();
666   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
667     smpi_initialize_global_memory_segments();
668 }
669
670 void SMPI_finalize(){
671   smpi_global_destroy();
672 }
673
674 void smpi_mpi_init() {
675   if(smpi_init_sleep > 0) 
676     simcall_process_sleep(smpi_init_sleep);
677 }
678
679 double smpi_mpi_wtime(){
680   double time;
681   if (smpi_process()->initialized() != 0 && smpi_process()->finalized() == 0 && smpi_process()->sampling() == 0) {
682     smpi_bench_end();
683     time = SIMIX_get_clock();
684     // to avoid deadlocks if used as a break condition, such as
685     //     while (MPI_Wtime(...) < time_limit) {
686     //       ....
687     //     }
688     // because the time will not normally advance when only calls to MPI_Wtime
689     // are made -> deadlock (MPI_Wtime never reaches the time limit)
690     if(smpi_wtime_sleep > 0) 
691       simcall_process_sleep(smpi_wtime_sleep);
692     smpi_bench_begin();
693   } else {
694     time = SIMIX_get_clock();
695   }
696   return time;
697 }
698