#include "pls/pls.h" using namespace pls; #include "benchmark_runner.h" #include "benchmark_base/matrix.h" #include using namespace comparison_benchmarks::base; template class pls_matrix : public matrix::matrix { public: pls_matrix() : matrix::matrix() {} void multiply(const matrix::matrix &a, const matrix::matrix &b) override { pls::algorithm::for_each_range(0, SIZE, [&](int i) { this->multiply_column(i, a, b); }); } }; constexpr int MAX_NUM_TASKS = 32; constexpr int MAX_STACK_SIZE = 4096 * 1; 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"; string full_directory = directory + "/PLS_v3/"; benchmark_runner runner{full_directory, test_name}; pls_matrix a; pls_matrix b; pls_matrix result; scheduler scheduler{(unsigned) num_threads, MAX_NUM_TASKS, MAX_STACK_SIZE}; scheduler.get_profiler().disable_memory_measure(); runner.run_iterations(matrix::NUM_ITERATIONS, [&]() { scheduler.perform_work([&]() { result.multiply(a, b); }); }, matrix::WARMUP_ITERATIONS); scheduler.get_profiler().current_run().print_dag(std::cout); scheduler.get_profiler().current_run().print_stats(); runner.commit_results(true); }