Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reduce scope for variables.
[simgrid.git] / src / smpi / internals / smpi_global.cpp
1 /* Copyright (c) 2007-2023. 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 "mc/mc.h"
7 #include "simgrid/Exception.hpp"
8 #include "simgrid/plugins/file_system.h"
9 #include "simgrid/s4u/Engine.hpp"
10 #include "smpi_coll.hpp"
11 #include "smpi_config.hpp"
12 #include "smpi_f2c.hpp"
13 #include "smpi_host.hpp"
14 #include "src/kernel/EngineImpl.hpp"
15 #include "src/kernel/activity/CommImpl.hpp"
16 #include "src/mc/mc_replay.hpp"
17 #include "src/smpi/include/smpi_actor.hpp"
18 #include "xbt/config.hpp"
19 #include "xbt/file.hpp"
20
21 #include <algorithm>
22 #include <array>
23 #include <boost/algorithm/string.hpp> /* split */
24 #include <boost/tokenizer.hpp>
25 #include <cerrno>
26 #include <cinttypes>
27 #include <cstdint> /* intmax_t */
28 #include <cstring> /* strerror */
29 #include <dlfcn.h>
30 #include <fcntl.h>
31 #include <fstream>
32 #include <sys/stat.h>
33
34 #if SG_HAVE_SENDFILE
35 #include <sys/sendfile.h>
36 #endif
37
38 #if HAVE_PAPI
39 #include "papi.h"
40 #endif
41
42 #if not defined(__APPLE__) && not defined(__HAIKU__)
43 #include <link.h>
44 #endif
45
46 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
47
48 #if SMPI_IFORT
49   extern "C" void for_rtl_init_ (int *, char **);
50   extern "C" void for_rtl_finish_ ();
51 #elif SMPI_FLANG
52   extern "C" void __io_set_argc(int);
53   extern "C" void __io_set_argv(char **);
54 #elif SMPI_GFORTRAN
55   extern "C" void _gfortran_set_args(int, char **);
56 #endif
57
58 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
59  * See https://www.akkadia.org/drepper/dsohowto.pdf
60  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
61 */
62 #if !RTLD_DEEPBIND || HAVE_SANITIZER_ADDRESS || HAVE_SANITIZER_THREAD
63 #define WANT_RTLD_DEEPBIND 0
64 #else
65 #define WANT_RTLD_DEEPBIND RTLD_DEEPBIND
66 #endif
67
68 #if HAVE_PAPI
69 std::map</* computation unit name */ std::string, papi_process_data, std::less<>> units2papi_setup;
70 #endif
71
72 std::unordered_map<std::string, double> location2speedup;
73
74 static int smpi_exit_status = 0;
75 static xbt_os_timer_t global_timer;
76 static std::vector<std::string> privatize_libs_paths;
77
78 // No instance gets manually created; check also the smpirun.in script as
79 // this default name is used there as well (when the <actor> tag is generated).
80 static const std::string smpi_default_instance_name("smpirun");
81
82 static simgrid::config::Flag<std::string>
83     smpi_hostfile("smpi/hostfile",
84                   "Classical MPI hostfile containing list of machines to dispatch "
85                   "the processes, one per line",
86                   "");
87
88 static simgrid::config::Flag<std::string> smpi_replay("smpi/replay",
89                                                       "Replay a trace instead of executing the application", "");
90
91 static simgrid::config::Flag<int> smpi_np("smpi/np", "Number of processes to be created", 0);
92
93 static simgrid::config::Flag<int> smpi_map("smpi/map", "Display the mapping between nodes and processes", 0);
94
95 std::function<void(simgrid::kernel::activity::CommImpl*, void*, size_t)> smpi_comm_copy_data_callback =
96     &smpi_comm_copy_buffer_callback;
97
98 simgrid::smpi::ActorExt* smpi_process()
99 {
100   simgrid::s4u::ActorPtr me = simgrid::s4u::Actor::self();
101
102   if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
103     return nullptr;
104
105   return me->extension<simgrid::smpi::ActorExt>();
106 }
107
108 simgrid::smpi::ActorExt* smpi_process_remote(simgrid::s4u::ActorPtr actor)
109 {
110   if (actor.get() == nullptr)
111     return nullptr;
112   return actor->extension<simgrid::smpi::ActorExt>();
113 }
114
115 MPI_Comm smpi_process_comm_self(){
116   return smpi_process()->comm_self();
117 }
118
119 MPI_Info smpi_process_info_env(){
120   return smpi_process()->info_env();
121 }
122
123 void * smpi_process_get_user_data(){
124   return simgrid::s4u::Actor::self()->get_data<void>();
125 }
126
127 void smpi_process_set_user_data(void *data){
128   simgrid::s4u::Actor::self()->set_data(data);
129 }
130
131 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
132 {
133   smpi_comm_copy_data_callback = callback;
134 }
135
136 static void memcpy_private(void* dest, const void* src, const std::vector<std::pair<size_t, size_t>>& private_blocks)
137 {
138   for (auto const& [block_begin, block_end] : private_blocks)
139     memcpy((uint8_t*)dest + block_begin, (uint8_t*)src + block_begin, block_end - block_begin);
140 }
141
142 static void check_blocks(const std::vector<std::pair<size_t, size_t>>& private_blocks, size_t buff_size)
143 {
144   for (auto const& [block_begin, block_end] : private_blocks)
145     xbt_assert(block_begin <= block_end && block_end <= buff_size, "Oops, bug in shared malloc.");
146 }
147
148 static void smpi_cleanup_comm_after_copy(simgrid::kernel::activity::CommImpl* comm, void* buff){
149   if (comm->is_detached()) {
150     // if this is a detached send, the source buffer was duplicated by SMPI
151     // sender to make the original buffer available to the application ASAP
152     xbt_free(buff);
153     //It seems that the request is used after the call there this should be free somewhere else but where???
154     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
155     comm->src_buff_ = nullptr;
156   }
157 }
158
159 void smpi_comm_copy_buffer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff, size_t buff_size)
160 {
161   size_t src_offset                     = 0;
162   size_t dst_offset                     = 0;
163   std::vector<std::pair<size_t, size_t>> src_private_blocks;
164   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
165   XBT_DEBUG("Copy the data over");
166   if(smpi_is_shared(buff, src_private_blocks, &src_offset)) {
167     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
168     if (src_private_blocks.empty()) { // simple shared malloc ... return.
169       XBT_VERB("Sender is shared. Let's ignore it.");
170       smpi_cleanup_comm_after_copy(comm, buff);
171       return;
172     }
173   }
174   else {
175     src_private_blocks.clear();
176     src_private_blocks.emplace_back(0, buff_size);
177   }
178   if (smpi_is_shared((char*)comm->dst_buff_, dst_private_blocks, &dst_offset)) {
179     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
180     if (dst_private_blocks.empty()) { // simple shared malloc ... return.
181       XBT_VERB("Receiver is shared. Let's ignore it.");
182       smpi_cleanup_comm_after_copy(comm, buff);
183       return;
184     }
185   }
186   else {
187     dst_private_blocks.clear();
188     dst_private_blocks.emplace_back(0, buff_size);
189   }
190   check_blocks(src_private_blocks, buff_size);
191   check_blocks(dst_private_blocks, buff_size);
192   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
193   check_blocks(private_blocks, buff_size);
194   void* tmpbuff=buff;
195   if (smpi_switch_data_segment(comm->src_actor_->get_iface(), buff)) {
196     XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
197     tmpbuff = xbt_malloc(buff_size);
198     memcpy_private(tmpbuff, buff, private_blocks);
199   }
200
201   if (smpi_switch_data_segment(comm->dst_actor_->get_iface(), comm->dst_buff_))
202     XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
203
204   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff, comm->dst_buff_);
205   memcpy_private(comm->dst_buff_, tmpbuff, private_blocks);
206
207   smpi_cleanup_comm_after_copy(comm,buff);
208   if (tmpbuff != buff)
209     xbt_free(tmpbuff);
210 }
211
212 void smpi_comm_null_copy_buffer_callback(simgrid::kernel::activity::CommImpl*, void*, size_t)
213 {
214   /* nothing done in this version */
215 }
216
217 static void smpi_init_papi()
218 {
219 #if HAVE_PAPI
220   // This map holds for each computation unit (such as "default" or "process1" etc.)
221   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
222   // and the (computed) event_set.
223
224   if (smpi_cfg_papi_events_file().empty())
225     return;
226
227   if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT) {
228     XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked? Expected version is %u",
229               PAPI_VER_CURRENT);
230     return;
231   }
232
233   using Tokenizer = boost::tokenizer<boost::char_separator<char>>;
234   boost::char_separator<char> separator_units(";");
235   std::string str = smpi_cfg_papi_events_file();
236   Tokenizer tokens(str, separator_units);
237
238   // Iterate over all the computational units. This could be processes, hosts, threads, ranks... You name it.
239   // I'm not exactly sure what we will support eventually, so I'll leave it at the general term "units".
240   for (auto const& unit_it : tokens) {
241     boost::char_separator<char> separator_events(":");
242     Tokenizer event_tokens(unit_it, separator_events);
243
244     int event_set = PAPI_NULL;
245     if (PAPI_create_eventset(&event_set) != PAPI_OK) {
246       // TODO: Should this let the whole simulation die?
247       XBT_CRITICAL("Could not create PAPI event set during init.");
248       break;
249     }
250
251     // NOTE: We cannot use a map here, as we must obey the order of the counters
252     // This is important for PAPI: We need to map the values of counters back to the event_names (so, when PAPI_read()
253     // has finished)!
254     papi_counter_t counters2values;
255
256     // Iterate over all counters that were specified for this specific unit.
257     // Note that we need to remove the name of the unit (that could also be the "default" value), which always comes
258     // first. Hence, we start at ++(events.begin())!
259     for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); ++events_it) {
260       int event_code   = PAPI_NULL;
261       auto* event_name = const_cast<char*>((*events_it).c_str());
262       if (PAPI_event_name_to_code(event_name, &event_code) != PAPI_OK) {
263         XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
264         continue;
265       }
266       if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
267         XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
268         continue;
269       }
270       XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
271
272       counters2values.emplace_back(*events_it, 0LL);
273     }
274
275     std::string unit_name    = *(event_tokens.begin());
276     papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
277
278     units2papi_setup.try_emplace(unit_name, std::move(config));
279   }
280 #endif
281 }
282
283 using smpi_entry_point_type         = std::function<int(int argc, char* argv[])>;
284 using smpi_c_entry_point_type       = int (*)(int argc, char** argv);
285 using smpi_fortran_entry_point_type = void (*)();
286
287 template <typename F>
288 static int smpi_run_entry_point(const F& entry_point, const std::string& executable_path,
289                                 const std::vector<std::string>& args)
290 {
291   // copy C strings, we need them writable
292   std::vector<char*> args4argv(args.size());
293   std::transform(begin(args) + 1, end(args), begin(args4argv) + 1,
294                  [](const std::string& s) { return xbt_strdup(s.c_str()); });
295
296   // set argv[0] to executable_path
297   args4argv[0] = xbt_strdup(executable_path.c_str());
298   // add the final NULL
299   args4argv.push_back(nullptr);
300
301   // take a copy of args4argv to keep reference of the allocated strings
302   const std::vector<char*> args2str(args4argv);
303
304   try {
305     int argc    = static_cast<int>(args4argv.size() - 1);
306     char** argv = args4argv.data();
307     int res = entry_point(argc, argv);
308     if (res != 0) {
309       XBT_WARN("SMPI process did not return 0. Return value : %d", res);
310       if (smpi_exit_status == 0)
311         smpi_exit_status = res;
312     }
313   } catch (simgrid::ForcefulKillException const& e) {
314     XBT_DEBUG("Caught a ForcefulKillException: %s", e.what());
315   }
316
317   for (char* s : args2str)
318     xbt_free(s);
319
320   return 0;
321 }
322
323 static smpi_entry_point_type smpi_resolve_function(void* handle)
324 {
325   if (auto* entry_point_fortran = reinterpret_cast<smpi_fortran_entry_point_type>(dlsym(handle, "user_main_"))) {
326     return [entry_point_fortran](int, char**) {
327       entry_point_fortran();
328       return 0;
329     };
330   }
331
332   if (auto* entry_point = reinterpret_cast<smpi_c_entry_point_type>(dlsym(handle, "main"))) {
333     return entry_point;
334   }
335
336   return smpi_entry_point_type();
337 }
338
339 static void smpi_copy_file(const std::string& src, const std::string& target, off_t fdin_size)
340 {
341   int fdin = open(src.c_str(), O_RDONLY);
342   xbt_assert(fdin >= 0, "Cannot read from %s. Please make sure that the file exists and is executable.", src.c_str());
343   xbt_assert(unlink(target.c_str()) == 0 || errno == ENOENT, "Failed to unlink file %s: %s", target.c_str(),
344              strerror(errno));
345   int fdout = open(target.c_str(), O_CREAT | O_RDWR | O_EXCL, S_IRWXU);
346   xbt_assert(fdout >= 0, "Cannot write into %s: %s", target.c_str(), strerror(errno));
347
348   XBT_DEBUG("Copy %" PRIdMAX " bytes into %s", static_cast<intmax_t>(fdin_size), target.c_str());
349 #if SG_HAVE_SENDFILE
350   ssize_t sent_size = sendfile(fdout, fdin, nullptr, fdin_size);
351   if (sent_size == fdin_size) {
352     close(fdin);
353     close(fdout);
354     return;
355   }
356   xbt_assert(sent_size == -1 && errno == ENOSYS,
357              "Error while copying %s: only %zd bytes copied instead of %" PRIdMAX " (errno: %d -- %s)", target.c_str(),
358              sent_size, static_cast<intmax_t>(fdin_size), errno, strerror(errno));
359 #endif
360   // If this point is reached, sendfile() actually is not available.  Copy file by hand.
361   std::vector<unsigned char> buf(1024 * 1024 * 4);
362   while (ssize_t got = read(fdin, buf.data(), buf.size())) {
363     if (got == -1) {
364       xbt_assert(errno == EINTR, "Cannot read from %s", src.c_str());
365       continue;
366     }
367     const unsigned char* p = buf.data();
368     ssize_t todo           = got;
369     while (ssize_t done = write(fdout, p, todo)) {
370       if (done == -1) {
371         xbt_assert(errno == EINTR, "Cannot write into %s", target.c_str());
372         continue;
373       }
374       p += done;
375       todo -= done;
376     }
377   }
378   close(fdin);
379   close(fdout);
380 }
381
382 #if not defined(__APPLE__) && not defined(__HAIKU__)
383 static int visit_libs(struct dl_phdr_info* info, size_t, void* data)
384 {
385   auto* libname    = static_cast<std::string*>(data);
386   std::string path = info->dlpi_name;
387   if (path.find(*libname) == std::string::npos)
388     return 0;
389
390   *libname = std::move(path);
391   return 1;
392 }
393 #endif
394
395 static void smpi_init_privatization_dlopen(const std::string& executable)
396 {
397   // Prepare the copy of the binary (get its size)
398   struct stat fdin_stat;
399   stat(executable.c_str(), &fdin_stat);
400   off_t fdin_size         = fdin_stat.st_size;
401
402   if (std::string libnames = simgrid::config::get_value<std::string>("smpi/privatize-libs"); not libnames.empty()) {
403     // split option
404     std::vector<std::string> privatize_libs;
405     boost::split(privatize_libs, libnames, boost::is_any_of(";"));
406
407     for (auto const& libname : privatize_libs) {
408       // load the library once to add it to the local libs, to get the absolute path
409       void* libhandle = dlopen(libname.c_str(), RTLD_LAZY);
410       xbt_assert(libhandle != nullptr, "Cannot dlopen %s - check your settings in smpi/privatize-libs",
411                  libname.c_str());
412       // get library name from path
413       std::string fullpath = libname;
414 #if not defined(__APPLE__) && not defined(__HAIKU__)
415       xbt_assert(dl_iterate_phdr(visit_libs, &fullpath) != 0,
416                  "Can't find a linked %s - check your settings in smpi/privatize-libs", fullpath.c_str());
417       XBT_DEBUG("Extra lib to privatize '%s' found", fullpath.c_str());
418 #else
419       xbt_die("smpi/privatize-libs is not (yet) compatible with OSX nor with Haiku");
420 #endif
421       privatize_libs_paths.emplace_back(std::move(fullpath));
422       dlclose(libhandle);
423     }
424   }
425
426   simgrid::s4u::Engine::get_instance()->register_default([executable, fdin_size](std::vector<std::string> args) {
427     return simgrid::kernel::actor::ActorCode([executable, fdin_size, args = std::move(args)] {
428       static std::size_t rank = 0;
429       // Copy the dynamic library:
430       simgrid::xbt::Path path(executable);
431       std::string target_executable = simgrid::config::get_value<std::string>("smpi/tmpdir") + "/" +
432           path.get_base_name() + "_" + std::to_string(getpid()) + "_" + std::to_string(rank) + ".so";
433
434       smpi_copy_file(executable, target_executable, fdin_size);
435       // if smpi/privatize-libs is set, duplicate pointed lib and link each executable copy to a different one.
436       std::vector<std::string> target_libs;
437       for (auto const& libpath : privatize_libs_paths) {
438         // if we were given a full path, strip it
439         size_t index = libpath.find_last_of("/\\");
440         std::string libname;
441         if (index != std::string::npos)
442           libname = libpath.substr(index + 1);
443
444         if (not libname.empty()) {
445           // load the library to add it to the local libs, to get the absolute path
446           struct stat fdin_stat2;
447           stat(libpath.c_str(), &fdin_stat2);
448           off_t fdin_size2 = fdin_stat2.st_size;
449
450           // Copy the dynamic library, the new name must be the same length as the old one
451           // just replace the name with 7 digits for the rank and the rest of the name.
452           auto pad                   = std::min<size_t>(7, libname.length());
453           std::string target_libname = std::string(pad - std::to_string(rank).length(), '0') + std::to_string(rank) + libname.substr(pad);
454           std::string target_lib = simgrid::config::get_value<std::string>("smpi/tmpdir") + "/" + target_libname;
455           target_libs.push_back(target_lib);
456           XBT_DEBUG("copy lib %s to %s, with size %lld", libpath.c_str(), target_lib.c_str(), (long long)fdin_size2);
457           smpi_copy_file(libpath, target_lib, fdin_size2);
458
459           std::string sedcommand = "sed -i -e 's/" + libname + "/" + target_libname + "/g' " + target_executable;
460           int status             = system(sedcommand.c_str());
461           xbt_assert(status == 0, "error while applying sed command %s \n", sedcommand.c_str());
462         }
463       }
464
465       rank++;
466       // Load the copy and resolve the entry point:
467       void* handle    = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | WANT_RTLD_DEEPBIND);
468       int saved_errno = errno;
469       if (not simgrid::config::get_value<bool>("smpi/keep-temps")) {
470         unlink(target_executable.c_str());
471         for (const std::string& target_lib : target_libs)
472           unlink(target_lib.c_str());
473       }
474       xbt_assert(handle != nullptr,
475                  "dlopen failed: %s (errno: %d -- %s).\nError: Did you compile the program with a SMPI-specific "
476                  "compiler (spmicc or friends)?",
477                  dlerror(), saved_errno, strerror(saved_errno));
478
479       smpi_entry_point_type entry_point = smpi_resolve_function(handle);
480       xbt_assert(entry_point, "Could not resolve entry point. Does your program contain a main() function?");
481       smpi_run_entry_point(entry_point, executable, args);
482     });
483   });
484 }
485
486 static void smpi_init_privatization_no_dlopen(const std::string& executable)
487 {
488   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
489     smpi_prepare_global_memory_segment();
490
491   // Load the dynamic library and resolve the entry point:
492   void* handle = dlopen(executable.c_str(), RTLD_LAZY | RTLD_LOCAL);
493   xbt_assert(handle != nullptr, "dlopen failed for %s: %s (errno: %d -- %s)", executable.c_str(), dlerror(), errno,
494              strerror(errno));
495   smpi_entry_point_type entry_point = smpi_resolve_function(handle);
496   xbt_assert(entry_point, "main not found in %s", executable.c_str());
497
498   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
499     smpi_backup_global_memory_segment();
500
501   // Execute the same entry point for each simulated process:
502   simgrid::s4u::Engine::get_instance()->register_default([entry_point, executable](std::vector<std::string> args) {
503     return simgrid::kernel::actor::ActorCode([entry_point, executable, args = std::move(args)] {
504       if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP) {
505         simgrid::smpi::ActorExt* ext = smpi_process();
506         /* Now using the segment index of this process  */
507         ext->set_privatized_region(smpi_init_global_memory_segment_process());
508         /* Done at the process's creation */
509         smpi_switch_data_segment(simgrid::s4u::Actor::self());
510       }
511       smpi_run_entry_point(entry_point, executable, args);
512     });
513   });
514 }
515
516 int smpi_main(const char* executable, int argc, char* argv[])
517 {
518   if (getenv("SMPI_PRETEND_CC") != nullptr) {
519     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
520      * configuration tools */
521     return 0;
522   }
523
524   smpi_init_options_internal(true);
525   simgrid::s4u::Engine engine(&argc, argv);
526
527   sg_storage_file_system_init();
528   // parse the platform file: get the host list
529   engine.load_platform(argv[1]);
530   engine.set_default_comm_data_copy_callback(smpi_comm_copy_buffer_callback);
531
532   if (smpi_cfg_privatization() == SmpiPrivStrategies::DLOPEN)
533     smpi_init_privatization_dlopen(executable);
534   else
535     smpi_init_privatization_no_dlopen(executable);
536
537   simgrid::smpi::colls::set_collectives();
538   simgrid::smpi::colls::smpi_coll_cleanup_callback = nullptr;
539
540   std::vector<char*> args4argv(argv + 1, argv + argc + 1); // last element is NULL
541   args4argv[0]     = xbt_strdup(executable);
542   int real_argc    = argc - 1;
543   char** real_argv = args4argv.data();
544
545   // Setup argc/argv for the Fortran run-time environment
546 #if SMPI_IFORT
547   for_rtl_init_(&real_argc, real_argv);
548 #elif SMPI_FLANG
549   __io_set_argc(real_argc);
550   __io_set_argv(real_argv);
551 #elif SMPI_GFORTRAN
552   _gfortran_set_args(real_argc, real_argv);
553 #endif
554
555   SMPI_init();
556
557   const std::vector<const char*> args(real_argv + 1, real_argv + real_argc);
558   int rank_counts =
559       smpi_deployment_smpirun(&engine, smpi_hostfile.get(), smpi_np.get(), smpi_replay.get(), smpi_map.get(), args);
560
561   SMPI_app_instance_register(smpi_default_instance_name.c_str(), nullptr, rank_counts);
562   MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
563
564   /* Flush output streams before and after the run */
565   fflush(stdout);
566   fflush(stderr);
567
568   engine.get_impl()->run(-1);
569
570   fflush(stderr);
571   fflush(stdout);
572
573   xbt_os_walltimer_stop(global_timer);
574   simgrid::smpi::utils::print_time_analysis(xbt_os_timer_elapsed(global_timer));
575
576   SMPI_finalize();
577
578 #if SMPI_IFORT
579   for_rtl_finish_();
580 #endif
581   xbt_free(args4argv[0]);
582
583   return smpi_exit_status;
584 }
585
586 int SMPI_is_inited()
587 {
588   return MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED;
589 }
590
591 // Called either directly from the user code, or from the code called by smpirun
592 void SMPI_init(){
593   smpi_init_options_internal(false);
594   simgrid::s4u::Actor::on_creation_cb([](simgrid::s4u::Actor& actor) {
595     if (not actor.is_daemon())
596       actor.extension_set<simgrid::smpi::ActorExt>(new simgrid::smpi::ActorExt(&actor));
597   });
598   simgrid::s4u::Host::on_creation_cb(
599       [](simgrid::s4u::Host& host) { host.extension_set(new simgrid::smpi::Host(&host)); });
600   for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts())
601     host->extension_set(new simgrid::smpi::Host(host));
602
603   if (not MC_is_active()) {
604     global_timer = xbt_os_timer_new();
605     xbt_os_walltimer_start(global_timer);
606   }
607   smpi_init_papi();
608   smpi_check_options();
609 }
610
611 void SMPI_finalize()
612 {
613   smpi_bench_destroy();
614   smpi_shared_destroy();
615   smpi_deployment_cleanup_instances();
616   smpi_cleanup_op_cost_callback();
617
618   if (simgrid::smpi::colls::smpi_coll_cleanup_callback != nullptr)
619     simgrid::smpi::colls::smpi_coll_cleanup_callback();
620
621   MPI_COMM_WORLD = MPI_COMM_NULL;
622
623   if (not MC_is_active()) {
624     xbt_os_timer_free(global_timer);
625   }
626
627   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
628     smpi_destroy_global_memory_segments();
629
630   simgrid::smpi::utils::print_memory_analysis();
631 }
632
633 void smpi_mpi_init() {
634   smpi_init_fortran_types();
635   if(_smpi_init_sleep > 0)
636     simgrid::s4u::this_actor::sleep_for(_smpi_init_sleep);
637   if (not MC_is_active() && not MC_record_replay_is_active()) {
638     smpi_deployment_startup_barrier(smpi_process()->get_instance_id());
639   }
640 }
641
642 void SMPI_thread_create() {
643   TRACE_smpi_init(simgrid::s4u::this_actor::get_pid(), __func__);
644   smpi_process()->mark_as_initialized();
645 }
646
647 void smpi_exit(int res){
648   if(res != 0){
649     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
650     smpi_exit_status = res;
651   }
652   simgrid::s4u::this_actor::exit();
653   THROW_IMPOSSIBLE;
654 }