Skip to content

Commit 40c4576

Browse files
Fix GPU runner targeting: use gpu-t4 for tests, gpu-v100 for docs
Both jobs segfaulted on demeter4 which has broken GPU drivers. Use gpu-t4 (arctic1) for tests and gpu-v100 (demeter3, exclusive machine with 2× V100-32GB) for the memory-hungry docs build. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 587cd86 commit 40c4576

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/GPU.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
gpu-tests:
2121
name: "GPU Tests"
22-
runs-on: [self-hosted, Linux, X64, gpu]
22+
runs-on: [self-hosted, Linux, X64, gpu-t4]
2323
timeout-minutes: 60
2424
steps:
2525
- uses: actions/checkout@v6
@@ -39,8 +39,8 @@ jobs:
3939

4040
gpu-docs:
4141
name: "Documentation"
42-
runs-on: [self-hosted, Linux, X64, gpu]
43-
timeout-minutes: 240
42+
runs-on: [self-hosted, gpu-v100]
43+
timeout-minutes: 360
4444
if: github.event_name == 'push' || !github.event.pull_request.draft
4545
steps:
4646
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)