changed default thread recursive values

This commit is contained in:
2026-05-22 20:28:29 +03:00
parent d4e700f980
commit 695e307c1e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
@@ -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"