File: main.cpp

package info (click to toggle)
xenium 0.0.2%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,088 kB
  • sloc: cpp: 12,297; makefile: 20
file content (379 lines) | stat: -rw-r--r-- 10,151 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#include <iostream>
#include <fstream>
#include <numeric>

#ifdef _MSC_VER
// taocpp config internally uses 128-bit arithmetic to check for overflows,
// but this is not supported by MSVC -> revert to 64-bit.
#define __int128_t std::int64_t
#endif
#include <tao/json/from_stream.hpp>
#include <tao/config/value.hpp>
#include <tao/config/schema.hpp>
#include <tao/config/internal/configurator.hpp>

#include "execution.hpp"

#ifdef WITH_LIBCDS
#include <cds/init.h>
#include <cds/gc/hp.h>
#include <cds/gc/dhp.h>
#endif

extern void register_queue_benchmark(registered_benchmarks&);
extern void register_hash_map_benchmark(registered_benchmarks&);

namespace {

struct invalid_argument_exception : std::exception {
  invalid_argument_exception(std::string arg): arg(std::move(arg)) {}
  const char* what() const noexcept override {
    return arg.c_str();
  }
private:
  std::string arg;
};

registered_benchmarks benchmarks;

template <template <typename...> class Traits>
void print_config(const tao::json::basic_value<Traits>& config) {
  std::cout << tao::json::to_string(config, 2) << std::endl;
}

void print_summary(const report& report) {
  std::vector<double> throughput;
  throughput.reserve(report.rounds.size());
  for (const auto& round : report.rounds)
    throughput.push_back(round.throughput());

  auto min = *std::min_element(throughput.begin(), throughput.end());
  auto max = *std::max_element(throughput.begin(), throughput.end());
  auto avg = std::accumulate(throughput.begin(), throughput.end(), 0.0) / throughput.size();
  auto sqr = [](double v) { return v*v; };
  double var = 0;
  for (auto v : throughput) {
    var += sqr(v - avg);  
  }
  var /= throughput.size();

  std::cout << "Summary:\n" <<
    "  min: " << min << " ops/ms\n" <<
    "  max: " << max << " ops/ms\n" <<
    "  avg: " << avg << " ops/ms\n" <<
    "  stddev: " << sqrt(var) << std::endl;
}

bool configs_match(const tao::config::value& config, const tao::json::value& descriptor);

bool objects_match(const tao::config::value::object_t& config, const tao::json::value::object_t& descriptor) {
  for (auto& entry : config) {
    auto it = descriptor.find(entry.first);
    if (it == descriptor.end()) {
      return false;
    }

    if (it->second.is_string() && it->second.get_string() == DYNAMIC_PARAM)
      continue;

    if (!configs_match(entry.second, it->second)) {
      return false;
    }
  }
  return true;
}

bool scalars_match(const tao::config::value& config, const tao::json::value& descriptor) {
  if (config.is_string() != descriptor.is_string() ||
      config.is_integer() != descriptor.is_integer() ||
      config.is_boolean() != descriptor.is_boolean()) {
    return false;
  }

  if (config.is_integer())
    return config.as<std::int64_t>() == descriptor.as<std::int64_t>();

  if (config.is_string())
    return config.get_string() == descriptor.get_string();

  if (config.is_boolean())
    return config.get_boolean() == descriptor.get_boolean();

  throw std::runtime_error("Found unexpected type in config.");
}

bool configs_match(const tao::config::value& config, const tao::json::value& descriptor) {
  if (config.is_object() != descriptor.is_object())
    return false;

  if (config.is_object())
    return objects_match(config.get_object(), descriptor.get_object());

  return scalars_match(config, descriptor);
}

struct options {
  std::string configfile;
  std::string report;
  std::vector<std::string> params;
};

struct key_value {
  std::string key;
  std::string value;
};

key_value split_key_value(const std::string& s) {
  auto pos = s.find("=");
  if (pos == std::string::npos)
    throw invalid_argument_exception(s);
  return {s.substr(0, pos), s.substr(pos + 1)};
}

class runner
{
public:
  runner(const options& opts);
  void run();

private:
  void write_report(const report& report);
  void load_config();
  void warmup();
  report run_benchmark();
  round_report exec_round(std::uint32_t runtime);
  std::shared_ptr<benchmark_builder> find_matching_builder(const benchmark_builders& benchmarks);

  tao::config::value _config;
  std::shared_ptr<benchmark_builder> _builder;
  std::string _reportfile;
  std::uint32_t _current_round = 0;
};

runner::runner(const options& opts) :
  _reportfile(opts.report)
{
  tao::config::internal::configurator configurator;
  configurator.parse(tao::config::pegtl::file_input(opts.configfile));

  for (auto& param : opts.params) {
    // TODO - error handling
    std::cout << "param: " << param << std::endl;
    configurator.parse(tao::config::pegtl_input_t(param, "command line param"));
  }

  _config = configurator.process<tao::config::traits>(tao::config::schema::builtin());

  load_config();
}

void runner::load_config() {
  auto type = _config.as<std::string>("type");
  auto it = benchmarks.find(type);
  if (it == benchmarks.end())
    throw std::runtime_error("Invalid benchmark type " + type);
  
  _builder = find_matching_builder(it->second);
  if (!_builder) {
    throw std::runtime_error("Invalid config");
  }
}

std::shared_ptr<benchmark_builder> runner::find_matching_builder(const benchmark_builders& builders)
{
  auto& ds_config = _config["ds"];
  std::cout << "Given data structure config:\n";
  print_config(ds_config);
  std::vector<std::shared_ptr<benchmark_builder>> matches;
  for(auto& var : builders) {
    auto descriptor = var->get_descriptor();
    if (configs_match(ds_config, descriptor)) {
      matches.push_back(var);
    }
  }

  if (matches.size() == 1)
    return matches[0];

  if (matches.empty()) {
    std::cout << "Could not find a benchmark that matches the given configuration. Available configurations are:\n";
    for (auto& var : builders) {
      print_config(var->get_descriptor());
      std::cout << "---\n";
    }
    return nullptr;
  }

  std::cout << "Ambiguous config - found more than one matching benchmark:\n";
  for (auto& var : matches) {
    print_config(var->get_descriptor());
    std::cout << '\n';
  }
  return nullptr;
}

void runner::run() {
  assert(_builder != nullptr);
  warmup();
  auto report = run_benchmark();
  print_summary(report);
  write_report(report);
}

void runner::write_report(const report& report) {
  if (_reportfile.empty())
    return;

  tao::json::value json;
  try {
    std::ifstream stream(_reportfile);
    if (stream) {
      json = tao::json::from_stream(stream, _reportfile);
    }
  } catch(...) {
    std::cerr << "Failed to parse existing report file \"" << _reportfile << "\"" <<
      " - skipping report generation!" << std::endl;
  }
  
  auto& reports = json["reports"];
  std::ofstream ostream(_reportfile);
  reports.push_back(report.as_json());
  tao::json::to_stream(ostream, json, 2);
}

void runner::warmup() {
  auto rounds = _config.optional<std::uint32_t>("warmup.rounds").value_or(0);
  auto runtime = _config.optional<std::uint32_t>("warmup.runtime").value_or(5000);
  for (std::uint32_t i = 0; i < rounds; ++i) {
    std::cout << "warmup round " << i << std::endl;
    auto report = exec_round(runtime);
    (void)report;
  }
}

report runner::run_benchmark() {
  auto rounds = _config.optional<std::uint32_t>("rounds").value_or(10);
  auto runtime = _config.optional<std::uint32_t>("runtime").value_or(10000);
  auto timestamp = std::chrono::duration_cast<std::chrono::milliseconds>(
    std::chrono::system_clock::now().time_since_epoch());

  std::vector<round_report> round_reports;
  round_reports.reserve(rounds);
  for (std::uint32_t i = 0; i < rounds; ++i) {
    std::cout << "round " << i << std::flush;
    auto report = exec_round(runtime);
    std::cout << " - " << report.operations() / report.runtime << " ops/ms" << std::endl;
    round_reports.push_back(std::move(report));
  }

  return {
    _config.optional<std::string>("name").value_or(_config.as<std::string>("type")),
    timestamp.count(),
    _config,
    round_reports
  };
}

round_report runner::exec_round(std::uint32_t runtime) {
  ++_current_round;
  auto benchmark = _builder->build();
  benchmark->setup(_config);

  execution exec(_current_round, runtime, benchmark);
  exec.create_threads(_config["threads"]);
  return exec.run();
}

void print_usage() {
  std::cout << "Usage: benchmark" <<
    " --help | <config-file>" <<
    " [--report=<report-file>]" <<
    " [-- <param>=<value> ...]" <<
    std::endl;
}

void print_available_benchmarks() {
  std::cout << "\nAvailable benchmark configurations:\n";
  for (auto& benchmark : benchmarks) {
    std::cout << "=== " << benchmark.first << " ===\n";
    for (auto& config : benchmark.second) {
      print_config(config->get_descriptor());
      std::cout << "---\n";
    }
    std::cout << std::endl;
  }
}

void parse_args(int argc, char* argv[], options& opts) {
  opts.configfile = argv[1];
  for (int i = 2; i < argc; ++i) {
    if (argv[i] == std::string("--")) {
      for (int j = i + 1; j < argc; ++j)
        opts.params.emplace_back(argv[j]);
      return;
    }

    auto arg = split_key_value(argv[i]);
    if (arg.key == "--report")
      opts.report = arg.value;
    else
      throw invalid_argument_exception(argv[i]);
  }
}

}

int main (int argc, char* argv[])
{
  register_queue_benchmark(benchmarks);
  register_hash_map_benchmark(benchmarks);
  
#if !defined(NDEBUG)
  std::cout
    << "==============================\n"
    << "  This is a __DEBUG__ build!  \n"
    << "=============================="
    << std::endl;
#endif

  if (argc < 2) {
    print_usage();
    return 1;
  }

  if (argv[1] == std::string("--help")) {
    print_usage();
    print_available_benchmarks();
    return 0;
  }

  try
  {
    options opts;
    parse_args(argc, argv, opts);

#ifdef WITH_LIBCDS
    cds::Initialize();
    cds::gc::HP hpGC;
    cds::gc::DHP dhpGC;

    cds::threading::Manager::attachThread();
#endif

    runner runner(opts);
    runner.run();

#ifdef WITH_LIBCDS
    cds::Terminate();
#endif

    return 0;
  } catch (const invalid_argument_exception& e) {
    std::cerr << "Invalid argumnent: " << e.what() << std::endl;
    print_usage();
    return 1;
  } catch (const std::exception& e) {
    std::cerr << "ERROR: " << e.what() << std::endl;
    return 1;
  }
}