#include "pls/pls.h" using namespace pls; #include #include "benchmark_runner.h" #include "benchmark_base/fib.h" using namespace comparison_benchmarks::base; int pls_fib(int n) { if (n == 0) { return 0; } if (n == 1) { return 1; } int a, b; spawn([n, &a]() { a = pls_fib(n - 1); }); spawn([n, &b]() { b = pls_fib(n - 2); }); sync(); return 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}; scheduler scheduler{(unsigned) num_threads, MAX_NUM_TASKS, MAX_STACK_SIZE}; volatile int res; scheduler.get_profiler().disable_memory_measure(); runner.run_iterations(fib::NUM_ITERATIONS, [&]() { scheduler.perform_work([&]() { res = pls_fib(fib::INPUT_N); }); }, fib::NUM_WARMUP_ITERATIONS); scheduler.get_profiler().current_run().print_dag(std::cout); scheduler.get_profiler().current_run().print_stats(); runner.commit_results(true); return 0; }