Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a SMPI_SAMPLE_LOCAL_TAG and SMPI_SAMPLE_GLOBAL_TAG macro for sampling, to provide...
[simgrid.git] / src / smpi / internals / smpi_bench.cpp
1 /* Copyright (c) 2007-2021. 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 "getopt.h"
7 #include "private.hpp"
8 #include "simgrid/host.h"
9 #include "simgrid/modelchecker.h"
10 #include "simgrid/s4u/Engine.hpp"
11 #include "simgrid/s4u/Exec.hpp"
12 #include "smpi_comm.hpp"
13 #include "smpi_utils.hpp"
14 #include "src/internal_config.h"
15 #include "src/mc/mc_replay.hpp"
16 #include "xbt/config.hpp"
17 #include "xbt/file.hpp"
18
19 #include "src/smpi/include/smpi_actor.hpp"
20 #include <unordered_map>
21
22 #ifndef WIN32
23 #include <sys/mman.h>
24 #endif
25 #include <cerrno>
26 #include <cmath>
27
28 #if HAVE_PAPI
29 #include <papi.h>
30 #endif
31
32 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_bench, smpi, "Logging specific to SMPI (benchmarking)");
33
34 static simgrid::config::Flag<double>
35     smpi_wtime_sleep("smpi/wtime",
36                      "Minimum time to inject inside a call to MPI_Wtime(), gettimeofday() and clock_gettime()",
37                      1e-8 /* Documented to be 10 ns */);
38
39 // Private execute_flops used by smpi_execute and smpi_execute_benched
40 void private_execute_flops(double flops) {
41   xbt_assert(flops >= 0, "You're trying to execute a negative amount of flops (%f)!", flops);
42   XBT_DEBUG("Handle real computation time: %f flops", flops);
43   simgrid::s4u::this_actor::exec_init(flops)
44       ->set_name("computation")
45       ->set_tracing_category(smpi_process()->get_tracing_category())
46       ->start()
47       ->wait();
48   smpi_switch_data_segment(simgrid::s4u::Actor::self());
49 }
50
51 void smpi_execute_flops(double flops)
52 {
53   private_execute_flops(flops);
54 }
55
56 void smpi_execute(double duration)
57 {
58   if (duration >= smpi_cfg_cpu_thresh()) {
59     XBT_DEBUG("Sleep for %gs (host time) to handle real computation time", duration);
60     private_execute_flops(duration * smpi_cfg_host_speed());
61   } else {
62     XBT_DEBUG("Real computation took %g while option smpi/cpu-threshold is set to %g => ignore it", duration,
63               smpi_cfg_cpu_thresh());
64   }
65 }
66
67 void smpi_execute_benched(double duration)
68 {
69   const SmpiBenchGuard suspend_bench;
70   double speed = sg_host_get_speed(sg_host_self());
71   smpi_execute_flops(duration*speed);
72 }
73
74 void smpi_execute_flops_benched(double flops) {
75   const SmpiBenchGuard suspend_bench;
76   smpi_execute_flops(flops);
77 }
78
79 void smpi_bench_begin()
80 {
81   smpi_switch_data_segment(simgrid::s4u::Actor::self());
82
83   if (MC_is_active() || MC_record_replay_is_active())
84     return;
85
86 #if HAVE_PAPI
87   if (not smpi_cfg_papi_events_file().empty()) {
88     int event_set = smpi_process()->papi_event_set();
89     // PAPI_start sets everything to 0! See man(3) PAPI_start
90     if (PAPI_LOW_LEVEL_INITED == PAPI_is_initialized() && event_set)
91       xbt_assert(PAPI_start(event_set) == PAPI_OK,
92                  "Could not start PAPI counters (TODO: this needs some proper handling).");
93   }
94 #endif
95   xbt_os_threadtimer_start(smpi_process()->timer());
96 }
97
98 double smpi_adjust_comp_speed(){
99   double speedup=1;
100   if (smpi_cfg_comp_adjustment_file()[0] != '\0') {
101     const smpi_trace_call_location_t* loc                      = smpi_process()->call_location();
102     std::string key                                            = loc->get_composed_key();
103     std::unordered_map<std::string, double>::const_iterator it = location2speedup.find(key);
104     if (it != location2speedup.end()) {
105       speedup = it->second;
106     }
107   }
108   return speedup;
109 }
110
111 void smpi_bench_end()
112 {
113   if (MC_is_active() || MC_record_replay_is_active())
114     return;
115
116   xbt_os_timer_t timer = smpi_process()->timer();
117   xbt_os_threadtimer_stop(timer);
118
119 #if HAVE_PAPI
120   /**
121    * An MPI function has been called and now is the right time to update
122    * our PAPI counters for this process.
123    */
124   if (not smpi_cfg_papi_events_file().empty()) {
125     papi_counter_t& counter_data        = smpi_process()->papi_counters();
126     int event_set                       = smpi_process()->papi_event_set();
127     std::vector<long long> event_values(counter_data.size());
128
129     if (event_set)
130       xbt_assert(PAPI_stop(event_set, &event_values[0]) == PAPI_OK, "Could not stop PAPI counters.");
131     for (unsigned int i = 0; i < counter_data.size(); i++)
132       counter_data[i].second += event_values[i];
133   }
134 #endif
135
136   if (smpi_process()->sampling()) {
137     XBT_CRITICAL("Cannot do recursive benchmarks.");
138     XBT_CRITICAL("Are you trying to make a call to MPI within an SMPI_SAMPLE_ block?");
139     xbt_backtrace_display_current();
140     xbt_die("Aborting.");
141   }
142
143   // Maybe we need to artificially speed up or slow down our computation based on our statistical analysis.
144   // Simulate the benchmarked computation unless disabled via command-line argument
145   if (smpi_cfg_simulate_computation()) {
146     smpi_execute(xbt_os_timer_elapsed(timer)/smpi_adjust_comp_speed());
147   }
148
149 #if HAVE_PAPI
150   if (not smpi_cfg_papi_events_file().empty() && TRACE_smpi_is_enabled()) {
151     simgrid::instr::Container* container =
152         simgrid::instr::Container::by_name(std::string("rank-") + std::to_string(simgrid::s4u::this_actor::get_pid()));
153     const papi_counter_t& counter_data = smpi_process()->papi_counters();
154
155     for (auto const& pair : counter_data) {
156       container->get_variable(pair.first)->set_event(simgrid::s4u::Engine::get_clock(), pair.second);
157     }
158   }
159 #endif
160
161   simgrid::smpi::utils::add_benched_time(xbt_os_timer_elapsed(timer));
162 }
163
164 /* Private sleep function used by smpi_sleep(), smpi_usleep() and friends */
165 static unsigned int private_sleep(double secs)
166 {
167   const SmpiBenchGuard suspend_bench;
168
169   XBT_DEBUG("Sleep for: %lf secs", secs);
170   aid_t pid = simgrid::s4u::this_actor::get_pid();
171   TRACE_smpi_sleeping_in(pid, secs);
172
173   simgrid::s4u::this_actor::sleep_for(secs);
174
175   TRACE_smpi_sleeping_out(pid);
176
177   return 0;
178 }
179
180 unsigned int smpi_sleep(unsigned int secs)
181 {
182   if (not smpi_process())
183     return sleep(secs);
184   return private_sleep(secs);
185 }
186
187 int smpi_usleep(useconds_t usecs)
188 {
189   if (not smpi_process())
190     return usleep(usecs);
191   return static_cast<int>(private_sleep(usecs / 1000000.0));
192 }
193
194 #if _POSIX_TIMERS > 0
195 int smpi_nanosleep(const struct timespec* tp, struct timespec* t)
196 {
197   if (not smpi_process())
198     return nanosleep(tp,t);
199   return static_cast<int>(private_sleep(tp->tv_sec + tp->tv_nsec / 1000000000.0));
200 }
201 #endif
202
203 int smpi_gettimeofday(struct timeval* tv, struct timezone* tz)
204 {
205   if (not smpi_process()->initialized() || smpi_process()->finalized() || smpi_process()->sampling())
206     return gettimeofday(tv, tz);
207
208   const SmpiBenchGuard suspend_bench;
209   double now = simgrid::s4u::Engine::get_clock();
210   if (tv) {
211     tv->tv_sec = static_cast<time_t>(now);
212 #ifdef WIN32
213     tv->tv_usec = static_cast<useconds_t>((now - tv->tv_sec) * 1e6);
214 #else
215     tv->tv_usec = static_cast<suseconds_t>((now - tv->tv_sec) * 1e6);
216 #endif
217   }
218   if (smpi_wtime_sleep > 0)
219     simgrid::s4u::this_actor::sleep_for(smpi_wtime_sleep);
220   return 0;
221 }
222
223 #if _POSIX_TIMERS > 0
224 int smpi_clock_gettime(clockid_t clk_id, struct timespec* tp)
225 {
226   if (not tp) {
227     errno = EFAULT;
228     return -1;
229   }
230   if (not smpi_process()->initialized() || smpi_process()->finalized() || smpi_process()->sampling())
231     return clock_gettime(clk_id, tp);
232   //there is only one time in SMPI, so clk_id is ignored.
233   const SmpiBenchGuard suspend_bench;
234   double now  = simgrid::s4u::Engine::get_clock();
235   tp->tv_sec  = static_cast<time_t>(now);
236   tp->tv_nsec = static_cast<long int>((now - tp->tv_sec) * 1e9);
237   if (smpi_wtime_sleep > 0)
238     simgrid::s4u::this_actor::sleep_for(smpi_wtime_sleep);
239   return 0;
240 }
241 #endif
242
243 double smpi_mpi_wtime()
244 {
245   double time;
246   if (smpi_process()->initialized() && not smpi_process()->finalized() && not smpi_process()->sampling()) {
247     const SmpiBenchGuard suspend_bench;
248     time = simgrid::s4u::Engine::get_clock();
249     if (smpi_wtime_sleep > 0)
250       simgrid::s4u::this_actor::sleep_for(smpi_wtime_sleep);
251   } else {
252     time = simgrid::s4u::Engine::get_clock();
253   }
254   return time;
255 }
256
257 extern double sg_surf_precision;
258 unsigned long long smpi_rastro_resolution ()
259 {
260   const SmpiBenchGuard suspend_bench;
261   double resolution = (1/sg_surf_precision);
262   return static_cast<unsigned long long>(resolution);
263 }
264
265 unsigned long long smpi_rastro_timestamp ()
266 {
267   const SmpiBenchGuard suspend_bench;
268   double now = simgrid::s4u::Engine::get_clock();
269
270   auto sec               = static_cast<unsigned long long>(now);
271   unsigned long long pre = (now - sec) * smpi_rastro_resolution();
272   return sec * smpi_rastro_resolution() + pre;
273 }
274
275 /* ****************************** Functions related to the SMPI_SAMPLE_ macros ************************************/
276 namespace {
277 class SampleLocation : public std::string {
278 public:
279   SampleLocation(bool global, const char* file, const char* tag) : std::string(std::string(file) + ":" + std::string(tag))
280   {
281     if (not global)
282       this->append(":" + std::to_string(simgrid::s4u::this_actor::get_pid()));
283   }
284 };
285
286 class LocalData {
287 public:
288   double threshold; /* maximal stderr requested (if positive) */
289   double relstderr; /* observed stderr so far */
290   double mean;      /* mean of benched times, to be used if the block is disabled */
291   double sum;       /* sum of benched times (to compute the mean and stderr) */
292   double sum_pow2;  /* sum of the square of the benched times (to compute the stderr) */
293   int iters;        /* amount of requested iterations */
294   int count;        /* amount of iterations done so far */
295   bool benching;    /* true: we are benchmarking; false: we have enough data, no bench anymore */
296
297   bool need_more_benchs() const;
298 };
299
300 bool LocalData::need_more_benchs() const
301 {
302   bool res = (count < iters) && (threshold < 0.0 || count < 2 ||          // not enough data
303                                                   relstderr >= threshold); // stderr too high yet
304   XBT_DEBUG("%s (count:%d iter:%d stderr:%f thres:%f mean:%fs)",
305             (res ? "need more data" : "enough benchs"), count, iters, relstderr, threshold, mean);
306   return res;
307 }
308
309 std::unordered_map<SampleLocation, LocalData, std::hash<std::string>> samples;
310 }
311
312 void smpi_sample_1(int global, const char *file, const char *tag, int iters, double threshold)
313 {
314   SampleLocation loc(global, file, tag);
315   if (not smpi_process()->sampling()) { /* Only at first call when benchmarking, skip for next ones */
316     smpi_bench_end();     /* Take time from previous, unrelated computation into account */
317     smpi_process()->set_sampling(1);
318   }
319
320   auto insert = samples.emplace(loc, LocalData{
321                                          threshold, // threshold
322                                          0.0,       // relstderr
323                                          0.0,       // mean
324                                          0.0,       // sum
325                                          0.0,       // sum_pow2
326                                          iters,     // iters
327                                          0,         // count
328                                          true       // benching (if we have no data, we need at least one)
329                                      });
330   if (insert.second) {
331     XBT_DEBUG("XXXXX First time ever on benched nest %s.", loc.c_str());
332     xbt_assert(threshold > 0 || iters > 0,
333         "You should provide either a positive amount of iterations to bench, or a positive maximal stderr (or both)");
334   } else {
335     LocalData& data = insert.first->second;
336     if (data.iters != iters || data.threshold != threshold) {
337       XBT_ERROR("Asked to bench block %s with different settings %d, %f is not %d, %f. "
338                 "How did you manage to give two numbers at the same line??",
339                 loc.c_str(), data.iters, data.threshold, iters, threshold);
340       THROW_IMPOSSIBLE;
341     }
342
343     // if we already have some data, check whether sample_2 should get one more bench or whether it should emulate
344     // the computation instead
345     data.benching = data.need_more_benchs();
346     XBT_DEBUG("XXXX Re-entering the benched nest %s. %s", loc.c_str(),
347               (data.benching ? "more benching needed" : "we have enough data, skip computes"));
348   }
349 }
350
351 int smpi_sample_2(int global, const char *file,const char *tag, int iter_count)
352 {
353   SampleLocation loc(global, file, tag);
354
355   XBT_DEBUG("sample2 %s %d", loc.c_str(), iter_count);
356   auto sample = samples.find(loc);
357   xbt_assert(sample != samples.end(),
358              "Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
359   const LocalData& data = sample->second;
360
361   if (data.benching) {
362     // we need to run a new bench
363     XBT_DEBUG("benchmarking: count:%d iter:%d stderr:%f thres:%f; mean:%f; total:%f",
364               data.count, data.iters, data.relstderr, data.threshold, data.mean, data.sum);
365     smpi_bench_begin();
366   } else {
367     // Enough data, no more bench (either we got enough data from previous visits to this benched nest, or we just
368     //ran one bench and need to bail out now that our job is done). Just sleep instead
369     if (not data.need_more_benchs()){
370       XBT_DEBUG("No benchmark (either no need, or just ran one): count (%d) >= iter (%d) (or <2) or stderr (%f) < thres (%f), or thresh is negative and ignored. "
371               "Mean is %f, will be injected %d times",
372               data.count, data.iters, data.relstderr, data.threshold, data.mean, iter_count);
373               
374       //we ended benchmarking, let's inject all the time, now, and fast forward out of the loop.
375       smpi_process()->set_sampling(0);
376       smpi_execute(data.mean*iter_count);
377       smpi_bench_begin();
378       return 0;
379     } else {
380       XBT_DEBUG("Skipping - Benchmark already performed - accumulating time");
381       xbt_os_threadtimer_start(smpi_process()->timer());
382     }
383   }
384   return 1;
385 }
386
387 void smpi_sample_3(int global, const char *file, const char* tag)
388 {
389   SampleLocation loc(global, file, tag);
390
391   XBT_DEBUG("sample3 %s", loc.c_str());
392   auto sample = samples.find(loc);
393   xbt_assert(sample != samples.end(),
394              "Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
395   LocalData& data = sample->second;
396
397   if (not data.benching)
398     THROW_IMPOSSIBLE;
399
400   // ok, benchmarking this loop is over
401   xbt_os_threadtimer_stop(smpi_process()->timer());
402
403   // update the stats
404   data.count++;
405   double period  = xbt_os_timer_elapsed(smpi_process()->timer());
406   data.sum      += period;
407   data.sum_pow2 += period * period;
408   double n       = data.count;
409   data.mean      = data.sum / n;
410   data.relstderr = sqrt((data.sum_pow2 / n - data.mean * data.mean) / n) / data.mean;
411
412   XBT_DEBUG("Average mean after %d steps is %f, relative standard error is %f (sample was %f)",
413             data.count, data.mean, data.relstderr, period);
414
415   // That's enough for now, prevent sample_2 to run the same code over and over
416   data.benching = false;
417 }
418
419 int smpi_sample_exit(int global, const char *file, const char* tag, int iter_count){
420   if (smpi_process()->sampling()){
421     SampleLocation loc(global, file, tag);
422
423     XBT_DEBUG("sample exit %s", loc.c_str());
424     auto sample = samples.find(loc);
425     xbt_assert(sample != samples.end(),
426                "Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
427
428     if (smpi_process()->sampling()){//end of loop, but still sampling needed
429       const LocalData& data = sample->second;
430       smpi_process()->set_sampling(0);
431       smpi_execute(data.mean * iter_count);
432       smpi_bench_begin();
433     }
434   }
435   return 0;
436 }
437
438 smpi_trace_call_location_t* smpi_trace_get_call_location()
439 {
440   return smpi_process()->call_location();
441 }
442
443 void smpi_trace_set_call_location(const char* file, const int line)
444 {
445   smpi_trace_call_location_t* loc = smpi_process()->call_location();
446
447   loc->previous_filename   = loc->filename;
448   loc->previous_linenumber = loc->linenumber;
449   if(not smpi_cfg_trace_call_use_absolute_path())
450     loc->filename = simgrid::xbt::Path(file).get_base_name();
451   else
452     loc->filename = file;
453   loc->linenumber = line;
454 }
455
456 /** Required for Fortran bindings */
457 void smpi_trace_set_call_location_(const char* file, const int* line)
458 {
459   smpi_trace_set_call_location(file, *line);
460 }
461
462 /** Required for Fortran if -fsecond-underscore is activated */
463 void smpi_trace_set_call_location__(const char* file, const int* line)
464 {
465   smpi_trace_set_call_location(file, *line);
466 }
467
468 void smpi_bench_destroy()
469 {
470   samples.clear();
471 }
472
473 int smpi_getopt_long_only (int argc,  char *const *argv,  const char *options,
474                       const struct option * long_options, int *opt_index)
475 {
476   if (smpi_process())
477     optind = smpi_process()->get_optind();
478   int ret = getopt_long_only (argc,  argv,  options, long_options, opt_index);
479   if (smpi_process())
480     smpi_process()->set_optind(optind);
481   return ret;
482 }
483
484 int smpi_getopt_long (int argc,  char *const *argv,  const char *options,
485                       const struct option * long_options, int *opt_index)
486 {
487   if (smpi_process())
488     optind = smpi_process()->get_optind();
489   int ret = getopt_long (argc,  argv,  options, long_options, opt_index);
490   if (smpi_process())
491     smpi_process()->set_optind(optind);
492   return ret;
493 }
494
495 int smpi_getopt (int argc,  char *const *argv,  const char *options)
496 {
497   if (smpi_process())
498     optind = smpi_process()->get_optind();
499   int ret = getopt (argc,  argv,  options);
500   if (smpi_process())
501     smpi_process()->set_optind(optind);
502   return ret;
503 }