Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
typo
[simgrid.git] / src / smpi / internals / smpi_utils.cpp
1 /* Copyright (c) 2016-2021. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "smpi_utils.hpp"
8
9 #include "src/surf/xml/platf_private.hpp"
10 #include "xbt/log.h"
11 #include "xbt/parse_units.hpp"
12 #include "xbt/sysdep.h"
13 #include "xbt/file.hpp"
14 #include <boost/tokenizer.hpp>
15 #include "smpi_config.hpp"
16 #include "smpi_f2c.hpp"
17 #include "src/simix/smx_private.hpp"
18
19 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_utils, smpi, "Logging specific to SMPI (utils)");
20
21 extern std::string surf_parsed_filename;
22 extern int surf_parse_lineno;
23
24 namespace simgrid {
25 namespace smpi {
26 namespace utils {
27
28 double total_benched_time=0;
29 unsigned long total_malloc_size=0;
30 unsigned long total_shared_size=0;
31 unsigned int total_shared_calls=0;
32 struct MaxMalloc {
33   size_t size          = 0;
34   unsigned int numcall = 0;
35   int line             = 0;
36   std::string file;
37 };
38 MaxMalloc max_malloc;
39
40 std::vector<s_smpi_factor_t> parse_factor(const std::string& smpi_coef_string)
41 {
42   std::vector<s_smpi_factor_t> smpi_factor;
43
44   /** Setup the tokenizer that parses the string **/
45   using Tokenizer = boost::tokenizer<boost::char_separator<char>>;
46   boost::char_separator<char> sep(";");
47   boost::char_separator<char> factor_separator(":");
48   Tokenizer tokens(smpi_coef_string, sep);
49
50   /**
51    * Iterate over patterns like A:B:C:D;E:F;G:H
52    * These will be broken down into:
53    * A --> B, C, D
54    * E --> F
55    * G --> H
56    */
57   for (Tokenizer::iterator token_iter = tokens.begin(); token_iter != tokens.end(); ++token_iter) {
58     XBT_DEBUG("token : %s", token_iter->c_str());
59     Tokenizer factor_values(*token_iter, factor_separator);
60     s_smpi_factor_t fact;
61     if (factor_values.begin() == factor_values.end()) {
62       xbt_die("Malformed radical for smpi factor: '%s'", smpi_coef_string.c_str());
63     }
64     unsigned int iteration = 0;
65     for (Tokenizer::iterator factor_iter = factor_values.begin(); factor_iter != factor_values.end(); ++factor_iter) {
66       iteration++;
67
68       if (factor_iter == factor_values.begin()) { /* first element */
69         try {
70           fact.factor = std::stoi(*factor_iter);
71         } catch (const std::invalid_argument&) {
72           throw std::invalid_argument(std::string("Invalid factor in chunk ") + std::to_string(smpi_factor.size() + 1) +
73                                       ": " + *factor_iter);
74         }
75       } else {
76         try {
77           fact.values.push_back(
78               xbt_parse_get_time(surf_parsed_filename, surf_parse_lineno, (*factor_iter).c_str(), "smpi factor", ""));
79         } catch (const std::invalid_argument&) {
80           throw std::invalid_argument(std::string("Invalid factor value ") + std::to_string(iteration) + " in chunk " +
81                                       std::to_string(smpi_factor.size() + 1) + ": " + *factor_iter);
82         }
83       }
84     }
85
86     smpi_factor.push_back(fact);
87     XBT_DEBUG("smpi_factor:\t%zu : %zu values, first: %f", fact.factor, smpi_factor.size(), fact.values[0]);
88   }
89   std::sort(smpi_factor.begin(), smpi_factor.end(), [](const s_smpi_factor_t &pa, const s_smpi_factor_t &pb) {
90     return (pa.factor < pb.factor);
91   });
92   for (auto const& fact : smpi_factor) {
93     XBT_DEBUG("smpi_factor:\t%zu : %zu values, first: %f", fact.factor, smpi_factor.size() ,fact.values[0]);
94   }
95   smpi_factor.shrink_to_fit();
96
97   return smpi_factor;
98 }
99
100 void add_benched_time(double time){
101   total_benched_time += time;
102 }
103
104 void account_malloc_size(size_t size, const char* file, int line){
105   total_malloc_size += size;
106   if(size > max_malloc.size){
107     max_malloc.size = size;
108     max_malloc.line = line;
109     max_malloc.numcall = 1;
110     max_malloc.file = std::string(file);
111   }else if(size == max_malloc.size && max_malloc.line == line && not max_malloc.file.compare(file)){
112     max_malloc.numcall++;
113   }
114 }
115
116 void account_shared_size(size_t size){
117   total_shared_size += size;
118   total_shared_calls++;
119 }
120
121 void print_time_analysis(double global_time){
122   if (simgrid::config::get_value<bool>("smpi/display-timing")) {
123     XBT_INFO("Simulated time: %g seconds. \n\n"
124         "The simulation took %g seconds (after parsing and platform setup)\n"
125         "%g seconds were actual computation of the application",
126         SIMIX_get_clock(), global_time , total_benched_time);
127     if (total_benched_time/global_time>=0.75)
128       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
129     "You may want to use sampling functions or trace replay to reduce this.");
130   }
131 }
132
133 void print_memory_analysis(){
134   if (simgrid::smpi::F2C::lookup() != nullptr &&
135       simgrid::smpi::F2C::lookup()->size() > simgrid::smpi::F2C::get_num_default_handles()) {
136     XBT_INFO("Probable memory leaks in your code: SMPI detected %zu unfreed MPI handles : "
137              "display types and addresses (n max) with --cfg=smpi/list-leaks:n.\n"
138              "Running smpirun with -wrapper \"valgrind --leak-check=full\" can provide more information",
139              simgrid::smpi::F2C::lookup()->size() - simgrid::smpi::F2C::get_num_default_handles());
140     int n = simgrid::config::get_value<int>("smpi/list-leaks");
141     for (auto const& p : *simgrid::smpi::F2C::lookup()) {
142       static int printed = 0;
143       if (printed >= n)
144         break;
145       if (p.first >= simgrid::smpi::F2C::get_num_default_handles()) {
146         XBT_WARN("Leak %p of type %s", p.second, boost::core::demangle(typeid(*(p.second)).name()).c_str());
147         printed++;
148       }
149     }
150   }
151   if (simgrid::config::get_value<bool>("smpi/display-analysis")) {
152     XBT_INFO("Memory Usage: Simulated application allocated %lu bytes during its lifetime through malloc/calloc calls.\n"
153            "Largest allocation at once from a single process was %zu bytes, at %s:%d. It was called %u times during the whole simulation.\n" 
154            "If this is too much, consider sharing allocations for computation buffers.\n"
155            "This can be done automatically by setting --cfg=smpi/auto-shared-malloc-thresh to the minimum size wanted size (this can alter execution if data content is necessary)\n", 
156            total_malloc_size, max_malloc.size, simgrid::xbt::Path(max_malloc.file).get_base_name().c_str(), max_malloc.line, max_malloc.numcall
157     );
158     if(total_shared_size != 0)
159       XBT_INFO("%lu bytes were automatically shared between processes, in %u calls\n", total_shared_size, total_shared_calls);
160   }
161 }
162
163 }
164 }
165 } // namespace simgrid