Skip to content

Commit f572dcf

Browse files
sbryngelsonclaude
andcommitted
bench: prefer rtx6000/l40s/v100 over h200/h100/a100 for GPU partition
High-end HPC partitions (H200, H100, A100) are high-demand and give inconsistent availability. RTX 6000 (35 nodes) and L40S are more consistently available, giving more reproducible benchmark timings. Fallback also updated from gpu-l40s to gpu-rtx6000. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 18311b8 commit f572dcf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/run_parallel_benchmarks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ echo "=========================================="
2525
if [ "$device" = "gpu" ] && [ "$cluster" = "phoenix" ]; then
2626
echo "Selecting Phoenix GPU partition for benchmark consistency..."
2727
BENCH_GPU_PARTITION=""
28-
for part in gpu-h200 gpu-h100 gpu-a100 gpu-l40s gpu-rtx6000 gpu-v100; do
28+
for part in gpu-rtx6000 gpu-l40s gpu-v100 gpu-h200 gpu-h100 gpu-a100; do
2929
# || true: grep -c exits 1 on zero matches (or when sinfo returns no output
3030
# for an unknown partition); suppress so set -euo pipefail doesn't abort.
3131
idle=$(sinfo -p "$part" --noheader -o "%t" 2>/dev/null | grep -cE "^(idle|mix)" || true)
@@ -37,7 +37,7 @@ if [ "$device" = "gpu" ] && [ "$cluster" = "phoenix" ]; then
3737
done
3838
if [ -z "$BENCH_GPU_PARTITION" ]; then
3939
echo "WARNING: No idle GPU partition found; falling back to gpu-l40s (may queue)"
40-
BENCH_GPU_PARTITION="gpu-l40s"
40+
BENCH_GPU_PARTITION="gpu-rtx6000"
4141
fi
4242
export BENCH_GPU_PARTITION
4343
fi

0 commit comments

Comments
 (0)