Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
db2ad1fb11dd1763e0ae2bee355c10ecdb47659d
[simgrid.git] / src / surf / surf_interface.cpp
1 /* Copyright (c) 2004-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 "surf_interface.hpp"
7 #include "mc/mc.h"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/sg_config.hpp"
10 #include "src/internal_config.h"
11 #include "src/surf/HostImpl.hpp"
12 #include "src/surf/xml/platf.hpp"
13 #include "surf/surf.hpp"
14 #include "xbt/module.h"
15
16 #include <fstream>
17 #include <string>
18
19 #ifdef _WIN32
20 #include <windows.h>
21 #endif
22
23 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf, "Logging specific to SURF (kernel)");
25
26 /*********
27  * Utils *
28  *********/
29
30 std::vector<simgrid::kernel::resource::Model*>* all_existing_models = nullptr; /* to destroy models correctly */
31
32 simgrid::trace_mgr::future_evt_set *future_evt_set = nullptr;
33 std::vector<std::string> surf_path;
34 std::vector<simgrid::s4u::Host*> host_that_restart;
35 /**  set of hosts for which one want to be notified if they ever restart. */
36 std::set<std::string> watched_hosts;
37 extern std::map<std::string, simgrid::surf::StorageType*> storage_types;
38
39 #include <simgrid/plugins/dvfs.h>   // FIXME: this plug-in should not be linked to the core
40 #include <simgrid/plugins/energy.h> // FIXME: this plug-in should not be linked to the core
41 #include <simgrid/plugins/load.h>   // FIXME: this plug-in should not be linked to the core
42
43 s_surf_model_description_t surf_plugin_description[] = {
44     {"host_energy", "Cpu energy consumption.", &sg_host_energy_plugin_init},
45     {"link_energy", "Link energy consumption.", &sg_link_energy_plugin_init},
46     {"host_dvfs", "Dvfs support", &sg_host_dvfs_plugin_init},
47     {"host_load", "Cpu load.", &sg_host_load_plugin_init},
48     {nullptr, nullptr, nullptr} /* this array must be nullptr terminated */
49 };
50
51 /* Don't forget to update the option description in smx_config when you change this */
52 s_surf_model_description_t surf_network_model_description[] = {
53     {"LV08", "Realistic network analytic model (slow-start modeled by multiplying latency by 13.01, bandwidth by .97; "
54              "bottleneck sharing uses a payload of S=20537 for evaluating RTT). ",
55      &surf_network_model_init_LegrandVelho},
56     {"Constant", "Simplistic network model where all communication take a constant time (one second). This model "
57                  "provides the lowest realism, but is (marginally) faster.",
58      &surf_network_model_init_Constant},
59     {"SMPI", "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with "
60              "correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
61      &surf_network_model_init_SMPI},
62     {"IB", "Realistic network model specifically tailored for HPC settings, with Infiniband contention model",
63      &surf_network_model_init_IB},
64     {"CM02", "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of "
65              "small messages are thus poorly modeled).",
66      &surf_network_model_init_CM02},
67     {"NS3", "Network pseudo-model using the NS3 tcp model instead of an analytic model", &surf_network_model_init_NS3},
68     {"Reno",
69      "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
70      &surf_network_model_init_Reno},
71     {"Reno2",
72      "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
73      &surf_network_model_init_Reno2},
74     {"Vegas",
75      "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
76      &surf_network_model_init_Vegas},
77     {nullptr, nullptr, nullptr} /* this array must be nullptr terminated */
78 };
79
80 #if ! HAVE_SMPI
81 void surf_network_model_init_SMPI() {
82   xbt_die("Please activate SMPI support in cmake to use the SMPI network model.");
83 }
84 void surf_network_model_init_IB() {
85   xbt_die("Please activate SMPI support in cmake to use the IB network model.");
86 }
87 #endif
88 #if !SIMGRID_HAVE_NS3
89 void surf_network_model_init_NS3() {
90   xbt_die("Please activate NS3 support in cmake and install the dependencies to use the NS3 network model.");
91 }
92 #endif
93
94 s_surf_model_description_t surf_cpu_model_description[] = {
95   {"Cas01", "Simplistic CPU model (time=size/power).", &surf_cpu_model_init_Cas01},
96   {nullptr, nullptr,  nullptr}      /* this array must be nullptr terminated */
97 };
98
99 s_surf_model_description_t surf_host_model_description[] = {
100   {"default",   "Default host model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)", &surf_host_model_init_current_default},
101   {"compound",  "Host model that is automatically chosen if you change the network and CPU models", &surf_host_model_init_compound},
102   {"ptask_L07", "Host model somehow similar to Cas01+CM02 but allowing parallel tasks", &surf_host_model_init_ptask_L07},
103   {nullptr, nullptr, nullptr}      /* this array must be nullptr terminated */
104 };
105
106 s_surf_model_description_t surf_optimization_mode_description[] = {
107   {"Lazy", "Lazy action management (partial invalidation in lmm + heap in action remaining).", nullptr},
108   {"TI",   "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).", nullptr},
109   {"Full", "Full update of remaining and variables. Slow but may be useful when debugging.", nullptr},
110   {nullptr, nullptr, nullptr}      /* this array must be nullptr terminated */
111 };
112
113 s_surf_model_description_t surf_storage_model_description[] = {
114   {"default", "Simplistic storage model.", &surf_storage_model_init_default},
115   {nullptr, nullptr,  nullptr}      /* this array must be nullptr terminated */
116 };
117
118 double NOW = 0;
119
120 double surf_get_clock()
121 {
122   return NOW;
123 }
124
125 std::ifstream* surf_ifsopen(std::string name)
126 {
127   std::ifstream* fs = new std::ifstream();
128   xbt_assert(not name.empty());
129   if (__surf_is_absolute_file_path(name.c_str())) { /* don't mess with absolute file names */
130     fs->open(name.c_str(), std::ifstream::in);
131   }
132
133   /* search relative files in the path */
134   for (auto const& path_elm : surf_path) {
135     std::string buff = path_elm + "/" + name;
136     fs->open(buff.c_str(), std::ifstream::in);
137
138     if (not fs->fail()) {
139       XBT_DEBUG("Found file at %s", buff.c_str());
140       return fs;
141     }
142   }
143
144   return fs;
145 }
146
147 FILE *surf_fopen(const char *name, const char *mode)
148 {
149   FILE *file = nullptr;
150
151   xbt_assert(name);
152
153   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
154     return fopen(name, mode);
155
156   /* search relative files in the path */
157   for (auto const& path_elm : surf_path) {
158     std::string buff = path_elm + "/" + name;
159     file             = fopen(buff.c_str(), mode);
160
161     if (file)
162       return file;
163   }
164   return nullptr;
165 }
166
167 /* The __surf_is_absolute_file_path() returns 1 if
168  * file_path is a absolute file path, in the other
169  * case the function returns 0.
170  */
171 int __surf_is_absolute_file_path(const char *file_path)
172 {
173 #ifdef _WIN32
174   WIN32_FIND_DATA wfd = { 0 };
175   HANDLE hFile = FindFirstFile(file_path, &wfd);
176
177   if (INVALID_HANDLE_VALUE == hFile)
178     return 0;
179
180   FindClose(hFile);
181   return 1;
182 #else
183   return (file_path[0] == '/');
184 #endif
185 }
186
187 /** Displays the long description of all registered models, and quit */
188 void model_help(const char *category, s_surf_model_description_t * table)
189 {
190   printf("Long description of the %s models accepted by this simulator:\n", category);
191   for (int i = 0; table[i].name; i++)
192     printf("  %s: %s\n", table[i].name, table[i].description);
193 }
194
195 int find_model_description(s_surf_model_description_t* table, std::string name)
196 {
197   for (int i = 0; table[i].name; i++)
198     if (name == table[i].name)
199       return i;
200
201   if (not table[0].name)
202     xbt_die("No model is valid! This is a bug.");
203
204   std::string name_list = std::string(table[0].name);
205   for (int i = 1; table[i].name; i++)
206     name_list = name_list + ", " + table[i].name;
207
208   xbt_die("Model '%s' is invalid! Valid models are: %s.", name.c_str(), name_list.c_str());
209   return -1;
210 }
211
212 void sg_version_check(int lib_version_major, int lib_version_minor, int lib_version_patch)
213 {
214   if ((lib_version_major != SIMGRID_VERSION_MAJOR) || (lib_version_minor != SIMGRID_VERSION_MINOR)) {
215     fprintf(stderr, "FATAL ERROR: Your program was compiled with SimGrid version %d.%d.%d, "
216                     "and then linked against SimGrid %d.%d.%d. Please fix this.\n",
217             lib_version_major, lib_version_minor, lib_version_patch, SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR,
218             SIMGRID_VERSION_PATCH);
219     abort();
220   }
221   if (lib_version_patch != SIMGRID_VERSION_PATCH) {
222     if (SIMGRID_VERSION_PATCH >= 90 || lib_version_patch >= 90) {
223       fprintf(
224           stderr,
225           "FATAL ERROR: Your program was compiled with SimGrid version %d.%d.%d, "
226           "and then linked against SimGrid %d.%d.%d. \n"
227           "One of them is a development version, and should not be mixed with the stable release. Please fix this.\n",
228           lib_version_major, lib_version_minor, lib_version_patch, SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR,
229           SIMGRID_VERSION_PATCH);
230       abort();
231     }
232     fprintf(stderr, "Warning: Your program was compiled with SimGrid version %d.%d.%d, "
233                     "and then linked against SimGrid %d.%d.%d. Proceeding anyway.\n",
234             lib_version_major, lib_version_minor, lib_version_patch, SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR,
235             SIMGRID_VERSION_PATCH);
236   }
237 }
238
239 void sg_version_get(int* ver_major, int* ver_minor, int* ver_patch)
240 {
241   *ver_major = SIMGRID_VERSION_MAJOR;
242   *ver_minor = SIMGRID_VERSION_MINOR;
243   *ver_patch = SIMGRID_VERSION_PATCH;
244 }
245
246 void sg_version()
247 {
248   std::printf("This program was linked against %s (git: %s), found in %s.\n",
249               SIMGRID_VERSION_STRING, SIMGRID_GIT_VERSION, SIMGRID_INSTALL_PREFIX);
250
251 #if SIMGRID_HAVE_MC
252   std::printf("   Model-checking support compiled in.\n");
253 #else
254   std::printf("   Model-checking support disabled at compilation.\n");
255 #endif
256
257 #if SIMGRID_HAVE_NS3
258   std::printf("   NS3 support compiled in.\n");
259 #else
260   std::printf("   NS3 support disabled at compilation.\n");
261 #endif
262
263 #if SIMGRID_HAVE_JEDULE
264   std::printf("   Jedule support compiled in.\n");
265 #else
266   std::printf("   Jedule support disabled at compilation.\n");
267 #endif
268
269 #if SIMGRID_HAVE_LUA
270   std::printf("   Lua support compiled in.\n");
271 #else
272   std::printf("   Lua support disabled at compilation.\n");
273 #endif
274
275 #if SIMGRID_HAVE_MALLOCATOR
276   std::printf("   Mallocator support compiled in.\n");
277 #else
278   std::printf("   Mallocator support disabled at compilation.\n");
279 #endif
280
281   std::printf("\nTo cite SimGrid in a publication, please use:\n"
282               "   Henri Casanova, Arnaud Giersch, Arnaud Legrand, Martin Quinson, Frédéric Suter. \n"
283               "   Versatile, Scalable, and Accurate Simulation of Distributed Applications and Platforms. \n"
284               "   Journal of Parallel and Distributed Computing, Elsevier, 2014, 74 (10), pp.2899-2917.\n");
285   std::printf("The pdf file and a BibTeX entry for LaTeX users can be found at http://hal.inria.fr/hal-01017319\n");
286 }
287
288 void surf_init(int *argc, char **argv)
289 {
290   if (USER_HOST_LEVEL != -1) // Already initialized
291     return;
292
293   XBT_DEBUG("Create all Libs");
294   USER_HOST_LEVEL = simgrid::s4u::Host::extension_create(nullptr);
295
296   xbt_init(argc, argv);
297   if (not all_existing_models)
298     all_existing_models = new std::vector<simgrid::kernel::resource::Model*>();
299   if (not future_evt_set)
300     future_evt_set = new simgrid::trace_mgr::future_evt_set();
301
302   sg_config_init(argc, argv);
303
304   if (MC_is_active())
305     MC_memory_init();
306 }
307
308 void surf_exit()
309 {
310   simgrid::s4u::Engine::shutdown();
311   for (auto const& e : storage_types) {
312     simgrid::surf::StorageType* stype = e.second;
313     delete stype->properties;
314     delete stype->model_properties;
315     delete stype;
316   }
317
318   for (auto const& model : *all_existing_models)
319     delete model;
320   delete all_existing_models;
321
322   delete future_evt_set;
323   future_evt_set = nullptr;
324
325   tmgr_finalize();
326   sg_platf_exit();
327
328   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
329 }