From 7338ac76e136f3d029a63317816caf7aa184c0a9 Mon Sep 17 00:00:00 2001 From: Elliott Slaughter Date: Tue, 30 Jul 2024 16:11:03 -0700 Subject: [PATCH] Fix SLURM job configuration for multi-node. --- experiment/sapling/run_all_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiment/sapling/run_all_tests.sh b/experiment/sapling/run_all_tests.sh index 73b2219..e2df1cf 100755 --- a/experiment/sapling/run_all_tests.sh +++ b/experiment/sapling/run_all_tests.sh @@ -26,7 +26,7 @@ function run_fuzzer_config { # We can't do as many tests in multi-node mode because SLURM has a # hard upper bound on the number of steps per job. test_count=10000 - launcher="srun -n 2 --overlap" + launcher="srun -n 2 --ntasks-per-node 2 --overlap" else echo "Don't recognize fuzzer mode $mode" exit 1