Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Improve option smpi/wtime
[simgrid.git] / src / smpi / internals / smpi_bench.cpp
1 /* Copyright (c) 2007-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 "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-6 /* Documented to be 1ms */);
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 void smpi_execute_flops_(double *flops)
44 {
45   smpi_execute_flops(*flops);
46 }
47
48 extern "C" XBT_PUBLIC void smpi_execute_(double* duration);
49 void smpi_execute_(double *duration)
50 {
51   smpi_execute(*duration);
52 }
53
54 void smpi_execute_flops(double flops) {
55   xbt_assert(flops >= 0, "You're trying to execute a negative amount of flops (%f)!", flops);
56   XBT_DEBUG("Handle real computation time: %f flops", flops);
57   simgrid::s4u::this_actor::exec_init(flops)
58       ->set_name("computation")
59       ->set_tracing_category(TRACE_internal_smpi_get_category())
60       ->start()
61       ->wait();
62   smpi_switch_data_segment(simgrid::s4u::Actor::self());
63 }
64
65 void smpi_execute(double duration)
66 {
67   if (duration >= smpi_cpu_threshold) {
68     XBT_DEBUG("Sleep for %g to handle real computation time", duration);
69     double flops = duration * smpi_host_speed;
70     int rank     = simgrid::s4u::this_actor::get_pid();
71     TRACE_smpi_computing_in(rank, flops);
72
73     smpi_execute_flops(flops);
74
75     TRACE_smpi_computing_out(rank);
76
77   } else {
78     XBT_DEBUG("Real computation took %g while option smpi/cpu-threshold is set to %g => ignore it", duration,
79               smpi_cpu_threshold);
80   }
81 }
82
83 void smpi_execute_benched(double duration)
84 {
85   smpi_bench_end();
86   double speed = sg_host_speed(sg_host_self());
87   smpi_execute_flops(duration*speed);
88   smpi_bench_begin();
89 }
90
91 void smpi_bench_begin()
92 {
93   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) {
94     smpi_switch_data_segment(simgrid::s4u::Actor::self());
95   }
96
97   if (MC_is_active() || MC_record_replay_is_active())
98     return;
99
100 #if HAVE_PAPI
101   if (not simgrid::config::get_value<std::string>("smpi/papi-events").empty()) {
102     int event_set = smpi_process()->papi_event_set();
103     // PAPI_start sets everything to 0! See man(3) PAPI_start
104     if (PAPI_LOW_LEVEL_INITED == PAPI_is_initialized()) {
105       if (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   }
112 #endif
113   xbt_os_threadtimer_start(smpi_process()->timer());
114 }
115
116 void smpi_bench_end()
117 {
118   if (MC_is_active() || MC_record_replay_is_active())
119     return;
120
121   double speedup = 1;
122   xbt_os_timer_t timer = smpi_process()->timer();
123   xbt_os_threadtimer_stop(timer);
124
125 #if HAVE_PAPI
126   /**
127    * An MPI function has been called and now is the right time to update
128    * our PAPI counters for this process.
129    */
130   if (not simgrid::config::get_value<std::string>("smpi/papi-events").empty()) {
131     papi_counter_t& counter_data        = smpi_process()->papi_counters();
132     int event_set                       = smpi_process()->papi_event_set();
133     std::vector<long long> event_values = std::vector<long long>(counter_data.size());
134
135     if (PAPI_stop(event_set, &event_values[0]) != PAPI_OK) { // Error
136       XBT_CRITICAL("Could not stop PAPI counters.\n");
137       xbt_die("Error.");
138     } else {
139       for (unsigned int i = 0; i < counter_data.size(); i++) {
140         counter_data[i].second += event_values[i];
141       }
142     }
143   }
144 #endif
145
146   if (smpi_process()->sampling()) {
147     XBT_CRITICAL("Cannot do recursive benchmarks.");
148     XBT_CRITICAL("Are you trying to make a call to MPI within a SMPI_SAMPLE_ block?");
149     xbt_backtrace_display_current();
150     xbt_die("Aborting.");
151   }
152
153   // Maybe we need to artificially speed up or slow down our computation based on our statistical analysis.
154   if (simgrid::config::get_value<std::string>("smpi/comp-adjustment-file")[0] != '\0') {
155
156     smpi_trace_call_location_t* loc                            = smpi_process()->call_location();
157     std::string key                                            = loc->get_composed_key();
158     std::unordered_map<std::string, double>::const_iterator it = location2speedup.find(key);
159     if (it != location2speedup.end()) {
160       speedup = it->second;
161     }
162   }
163
164   // Simulate the benchmarked computation unless disabled via command-line argument
165   if (simgrid::config::get_value<bool>("smpi/simulate-computation")) {
166     smpi_execute(xbt_os_timer_elapsed(timer)/speedup);
167   }
168
169 #if HAVE_PAPI
170   if (not simgrid::config::get_value<std::string>("smpi/papi-events").empty() && TRACE_smpi_is_enabled()) {
171     container_t container =
172         simgrid::instr::Container::by_name(std::string("rank-") + std::to_string(simgrid::s4u::this_actor::get_pid()));
173     papi_counter_t& counter_data = smpi_process()->papi_counters();
174
175     for (auto const& pair : counter_data) {
176       simgrid::instr::VariableType* variable = static_cast<simgrid::instr::VariableType*>(container->type_->by_name(pair.first));
177       variable->set_event(SIMIX_get_clock(), pair.second);
178     }
179   }
180 #endif
181
182   smpi_total_benched_time += xbt_os_timer_elapsed(timer);
183 }
184
185 /* Private sleep function used by smpi_sleep(), smpi_usleep() and friends */
186 static unsigned int private_sleep(double secs)
187 {
188   smpi_bench_end();
189
190   XBT_DEBUG("Sleep for: %lf secs", secs);
191   int rank = simgrid::s4u::this_actor::get_pid();
192   TRACE_smpi_sleeping_in(rank, secs);
193
194   simcall_process_sleep(secs);
195
196   TRACE_smpi_sleeping_out(rank);
197
198   smpi_bench_begin();
199   return 0;
200 }
201
202 unsigned int smpi_sleep(unsigned int secs)
203 {
204   if (not smpi_process())
205     return sleep(secs);
206   return private_sleep(static_cast<double>(secs));
207 }
208
209 int smpi_usleep(useconds_t usecs)
210 {
211   if (not smpi_process())
212     return usleep(usecs);
213   return static_cast<int>(private_sleep(static_cast<double>(usecs) / 1000000.0));
214 }
215
216 #if _POSIX_TIMERS > 0
217 int smpi_nanosleep(const struct timespec* tp, struct timespec* t)
218 {
219   if (not smpi_process())
220     return nanosleep(tp,t);
221   return static_cast<int>(private_sleep(static_cast<double>(tp->tv_sec + tp->tv_nsec / 1000000000.0)));
222 }
223 #endif
224
225 int smpi_gettimeofday(struct timeval* tv, struct timezone* tz)
226 {
227   if (not smpi_process())
228     return gettimeofday(tv, tz);
229
230   smpi_bench_end();
231   double now = SIMIX_get_clock();
232   if (tv) {
233     tv->tv_sec = static_cast<time_t>(now);
234 #ifdef WIN32
235     tv->tv_usec = static_cast<useconds_t>((now - tv->tv_sec) * 1e6);
236 #else
237     tv->tv_usec = static_cast<suseconds_t>((now - tv->tv_sec) * 1e6);
238 #endif
239   }
240   if (smpi_wtime_sleep > 0)
241     simcall_process_sleep(smpi_wtime_sleep);
242   smpi_bench_begin();
243   return 0;
244 }
245
246 #if _POSIX_TIMERS > 0
247 int smpi_clock_gettime(clockid_t clk_id, struct timespec* tp)
248 {
249   if (not smpi_process())
250     return clock_gettime(clk_id, tp);
251   //there is only one time in SMPI, so clk_id is ignored.
252   smpi_bench_end();
253   double now = SIMIX_get_clock();
254   if (tp) {
255     tp->tv_sec = static_cast<time_t>(now);
256     tp->tv_nsec = static_cast<long int>((now - tp->tv_sec) * 1e9);
257   }
258   if (smpi_wtime_sleep > 0)
259     simcall_process_sleep(smpi_wtime_sleep);
260   smpi_bench_begin();
261   return 0;
262 }
263 #endif
264
265 double smpi_mpi_wtime()
266 {
267   double time;
268   if (smpi_process()->initialized() && not smpi_process()->finalized() && not smpi_process()->sampling()) {
269     smpi_bench_end();
270     time = SIMIX_get_clock();
271     if (smpi_wtime_sleep > 0)
272       simcall_process_sleep(smpi_wtime_sleep);
273     smpi_bench_begin();
274   } else {
275     time = SIMIX_get_clock();
276   }
277   return time;
278 }
279
280 extern double sg_surf_precision;
281 unsigned long long smpi_rastro_resolution ()
282 {
283   smpi_bench_end();
284   double resolution = (1/sg_surf_precision);
285   smpi_bench_begin();
286   return static_cast<unsigned long long>(resolution);
287 }
288
289 unsigned long long smpi_rastro_timestamp ()
290 {
291   smpi_bench_end();
292   double now = SIMIX_get_clock();
293
294   unsigned long long sec = static_cast<unsigned long long>(now);
295   unsigned long long pre = (now - sec) * smpi_rastro_resolution();
296   smpi_bench_begin();
297   return static_cast<unsigned long long>(sec) * smpi_rastro_resolution() + pre;
298 }
299
300 /* ****************************** Functions related to the SMPI_SAMPLE_ macros ************************************/
301 namespace {
302 class SampleLocation : public std::string {
303 public:
304   SampleLocation(bool global, const char* file, int line) : std::string(std::string(file) + ":" + std::to_string(line))
305   {
306     if (not global)
307       this->append(":" + std::to_string(simgrid::s4u::this_actor::get_pid()));
308   }
309 };
310
311 class LocalData {
312 public:
313   double threshold; /* maximal stderr requested (if positive) */
314   double relstderr; /* observed stderr so far */
315   double mean;      /* mean of benched times, to be used if the block is disabled */
316   double sum;       /* sum of benched times (to compute the mean and stderr) */
317   double sum_pow2;  /* sum of the square of the benched times (to compute the stderr) */
318   int iters;        /* amount of requested iterations */
319   int count;        /* amount of iterations done so far */
320   bool benching;    /* true: we are benchmarking; false: we have enough data, no bench anymore */
321
322   bool need_more_benchs() const;
323 };
324
325 bool LocalData::need_more_benchs() const
326 {
327   bool res = (count < iters) || (threshold > 0.0 && (count < 2 ||          // not enough data
328                                                      relstderr > threshold // stderr too high yet
329                                                      ));
330   XBT_DEBUG("%s (count:%d iter:%d stderr:%f thres:%f mean:%fs)",
331             (res ? "need more data" : "enough benchs"), count, iters, relstderr, threshold, mean);
332   return res;
333 }
334
335 std::unordered_map<SampleLocation, LocalData, std::hash<std::string>> samples;
336 }
337
338 void smpi_sample_1(int global, const char *file, int line, int iters, double threshold)
339 {
340   SampleLocation loc(global, file, line);
341
342   smpi_bench_end();     /* Take time from previous, unrelated computation into account */
343   smpi_process()->set_sampling(1);
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)
377 {
378   SampleLocation loc(global, file, line);
379   int res;
380
381   XBT_DEBUG("sample2 %s", loc.c_str());
382   auto sample = samples.find(loc);
383   if (sample == samples.end())
384     xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
385   LocalData& data = sample->second;
386
387   if (data.benching) {
388     // we need to run a new bench
389     XBT_DEBUG("benchmarking: count:%d iter:%d stderr:%f thres:%f; mean:%f",
390               data.count, data.iters, data.relstderr, data.threshold, data.mean);
391     res = 1;
392   } else {
393     // Enough data, no more bench (either we got enough data from previous visits to this benched nest, or we just
394     //ran one bench and need to bail out now that our job is done). Just sleep instead
395     XBT_DEBUG("No benchmark (either no need, or just ran one): count >= iter (%d >= %d) or stderr<thres (%f<=%f)."
396               " apply the %fs delay instead",
397               data.count, data.iters, data.relstderr, data.threshold, data.mean);
398     smpi_execute(data.mean);
399     smpi_process()->set_sampling(0);
400     res = 0; // prepare to capture future, unrelated computations
401   }
402   smpi_bench_begin();
403   return res;
404 }
405
406 void smpi_sample_3(int global, const char *file, int line)
407 {
408   SampleLocation loc(global, file, line);
409
410   XBT_DEBUG("sample3 %s", loc.c_str());
411   auto sample = samples.find(loc);
412   if (sample == samples.end())
413     xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
414   LocalData& data = sample->second;
415
416   if (not data.benching)
417     THROW_IMPOSSIBLE;
418
419   // ok, benchmarking this loop is over
420   xbt_os_threadtimer_stop(smpi_process()->timer());
421
422   // update the stats
423   data.count++;
424   double period  = xbt_os_timer_elapsed(smpi_process()->timer());
425   data.sum      += period;
426   data.sum_pow2 += period * period;
427   double n       = static_cast<double>(data.count);
428   data.mean      = data.sum / n;
429   data.relstderr = sqrt((data.sum_pow2 / n - data.mean * data.mean) / n) / data.mean;
430   if (data.need_more_benchs()) {
431     data.mean = period; // Still in benching process; We want sample_2 to simulate the exact time of this loop
432     // occurrence before leaving, not the mean over the history
433   }
434   XBT_DEBUG("Average mean after %d steps is %f, relative standard error is %f (sample was %f)",
435             data.count, data.mean, data.relstderr, period);
436
437   // That's enough for now, prevent sample_2 to run the same code over and over
438   data.benching = false;
439 }
440
441 smpi_trace_call_location_t* smpi_trace_get_call_location()
442 {
443   return smpi_process()->call_location();
444 }
445
446 void smpi_trace_set_call_location(const char* file, const int line)
447 {
448   smpi_trace_call_location_t* loc = smpi_process()->call_location();
449
450   loc->previous_filename   = loc->filename;
451   loc->previous_linenumber = loc->linenumber;
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, 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, 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 }