From 695e307c1eb96bd7d703e3ca9fbb17bd2367eb34 Mon Sep 17 00:00:00 2001 From: andreastaliad Date: Fri, 22 May 2026 20:28:29 +0300 Subject: [PATCH] changed default thread recursive values --- run_all_experiments.sh | 2 +- thread_recursive_scaling/run_thread_recursive.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/run_all_experiments.sh b/run_all_experiments.sh index 897dfc2..07036ff 100644 --- a/run_all_experiments.sh +++ b/run_all_experiments.sh @@ -180,7 +180,7 @@ fi run_with_sampling \ "thread_recursive_scaling" \ - "cd '$ROOT_DIR/thread_recursive_scaling' && ./run_thread_recursive.sh" \ + "cd '$ROOT_DIR/thread_recursive_scaling' && ./run_thread_recursive.sh 6 6 6" \ "$OUT_DIR/thread_recursive_scaling.csv" \ 0 diff --git a/thread_recursive_scaling/run_thread_recursive.sh b/thread_recursive_scaling/run_thread_recursive.sh index 9642cc6..ea025ef 100755 --- a/thread_recursive_scaling/run_thread_recursive.sh +++ b/thread_recursive_scaling/run_thread_recursive.sh @@ -14,9 +14,9 @@ echo "Compiled thread_recursive" # Example: # ./run_thread_recursive.sh 2 6 10 -BRANCH=${1:-2} +BRANCH=${1:-6} DEPTH=${2:-6} -HOLD=${3:-10} +HOLD=${3:-6} RESULTS_CSV="$DIR/results.csv" RUNS_DIR="$DIR/runs"