main.cpp 1.57 KB
Newer Older
1
#include "pls/internal/scheduling/scheduler.h"
2
#include "pls/internal/scheduling/static_scheduler_memory.h"
3
#include "pls/algorithms/for_each.h"
4

5
using namespace pls::internal::scheduling;
6

7 8
#include "benchmark_runner.h"
#include "benchmark_base/matrix.h"
9

10
using namespace comparison_benchmarks::base;
11 12

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

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

24 25
constexpr int MAX_NUM_THREADS = 8;
constexpr int MAX_NUM_TASKS = 32;
26
constexpr int MAX_STACK_SIZE = 1024 * 1;
27 28 29 30

static_scheduler_memory<MAX_NUM_THREADS,
                        MAX_NUM_TASKS,
                        MAX_STACK_SIZE> global_scheduler_memory;
31

32 33 34 35
int main(int argc, char **argv) {
  int num_threads;
  string directory;
  benchmark_runner::read_args(argc, argv, num_threads, directory);
36

37
  string test_name = to_string(num_threads) + ".csv";
38
  string full_directory = directory + "/PLS_v3/";
39
  benchmark_runner runner{full_directory, test_name};
40

41 42 43
  pls_matrix<double, matrix::MATRIX_SIZE> a;
  pls_matrix<double, matrix::MATRIX_SIZE> b;
  pls_matrix<double, matrix::MATRIX_SIZE> result;
44

45
  scheduler scheduler{global_scheduler_memory, (unsigned) num_threads};
46

47 48 49 50 51
  runner.run_iterations(matrix::NUM_ITERATIONS, [&]() {
    scheduler.perform_work([&]() {
      result.multiply(a, b);
    });
  }, matrix::WARMUP_ITERATIONS);
52 53
  runner.commit_results(true);
}