main.cpp 1.24 KB
Newer Older
1
#include "pls/pls.h"
FritzFlorian committed
2

3
using namespace pls;
FritzFlorian committed
4 5 6 7 8 9 10 11

#include <iostream>

#include "benchmark_runner.h"
#include "benchmark_base/fib.h"

using namespace comparison_benchmarks::base;

12
int pls_fib(int n) {
13 14 15 16
  if (n == 0) {
    return 0;
  }
  if (n == 1) {
17
    return 1;
FritzFlorian committed
18 19
  }

20
  int a, b;
21
  spawn([n, &a]() {
22 23
    a = pls_fib(n - 1);
  });
24
  spawn([n, &b]() {
25 26
    b = pls_fib(n - 2);
  });
27
  sync();
28

29
  return a + b;
FritzFlorian committed
30 31
}

32
constexpr int MAX_NUM_TASKS = 32;
33
constexpr int MAX_STACK_SIZE = 4096 * 1;
34

FritzFlorian committed
35 36 37 38 39 40
int main(int argc, char **argv) {
  int num_threads;
  string directory;
  benchmark_runner::read_args(argc, argv, num_threads, directory);

  string test_name = to_string(num_threads) + ".csv";
41
  string full_directory = directory + "/PLS_v3/";
FritzFlorian committed
42 43
  benchmark_runner runner{full_directory, test_name};

44
  scheduler scheduler{(unsigned) num_threads, MAX_NUM_TASKS, MAX_STACK_SIZE};
FritzFlorian committed
45 46

  volatile int res;
FritzFlorian committed
47
  scheduler.get_profiler().disable_memory_measure();
48 49
  runner.run_iterations(fib::NUM_ITERATIONS, [&]() {
    scheduler.perform_work([&]() {
50
      res = pls_fib(fib::INPUT_N);
51 52
    });
  }, fib::NUM_WARMUP_ITERATIONS);
FritzFlorian committed
53 54 55
  scheduler.get_profiler().current_run().print_dag(std::cout);
  scheduler.get_profiler().current_run().print_stats();

FritzFlorian committed
56 57 58 59
  runner.commit_results(true);

  return 0;
}