Logo AND Algorithmique Numérique Distribuée

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