main.cpp 1.45 KB
Newer Older
1
#include "pls/pls.h"
2

3
using namespace pls;
4

5 6
#include "benchmark_runner.h"
#include "benchmark_base/matrix.h"
FritzFlorian committed
7
#include <iostream>
8

9
using namespace comparison_benchmarks::base;
10 11

template<typename T, int SIZE>
12
class pls_matrix : public matrix::matrix<T, SIZE> {
13
 public:
14
  pls_matrix() : matrix::matrix<T, SIZE>() {}
15

16 17
  void multiply(const matrix::matrix<T, SIZE> &a, const matrix::matrix<T, SIZE> &b) override {
    pls::algorithm::for_each_range(0, SIZE, [&](int i) {
18 19 20 21 22
      this->multiply_column(i, a, b);
    });
  }
};

23
constexpr int MAX_NUM_TASKS = 32;
24
constexpr int MAX_STACK_SIZE = 4096 * 1;
25

26 27 28 29
int main(int argc, char **argv) {
  int num_threads;
  string directory;
  benchmark_runner::read_args(argc, argv, num_threads, directory);
30

31
  string test_name = to_string(num_threads) + ".csv";
32
  string full_directory = directory + "/PLS_v3/";
33
  benchmark_runner runner{full_directory, test_name};
34

35 36 37
  pls_matrix<double, matrix::MATRIX_SIZE> a;
  pls_matrix<double, matrix::MATRIX_SIZE> b;
  pls_matrix<double, matrix::MATRIX_SIZE> result;
38

39
  scheduler scheduler{(unsigned) num_threads, MAX_NUM_TASKS, MAX_STACK_SIZE};
40

FritzFlorian committed
41
  scheduler.get_profiler().disable_memory_measure();
42 43 44 45 46
  runner.run_iterations(matrix::NUM_ITERATIONS, [&]() {
    scheduler.perform_work([&]() {
      result.multiply(a, b);
    });
  }, matrix::WARMUP_ITERATIONS);
FritzFlorian committed
47 48 49
  scheduler.get_profiler().current_run().print_dag(std::cout);
  scheduler.get_profiler().current_run().print_stats();

50 51
  runner.commit_results(true);
}