Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/compute-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,22 @@ jobs:
- { ARCH: 'arm64', PY_VER: '3.14', CUDA_VER: '13.3.0', LINUX_VER: 'rockylinux8', GPU: 'a100', DRIVER: 'latest', DEPENDENCIES: 'latest' }
- { ARCH: 'arm64', PY_VER: '3.14', CUDA_VER: '13.3.0', LINUX_VER: 'ubuntu26.04', GPU: 'gb300', DRIVER: 'latest', DEPENDENCIES: 'latest' }

docs-build:
pull-request: &docs_build
# Docs builds just need any GPU. Centrallizing the matrix reduces the effort to switch

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Docs builds just need any GPU. Centrallizing the matrix reduces the effort to switch
# Docs builds just need any GPU. Centralizing the matrix reduces the effort to switch

# to different runner types (e.g. to those that are cheaper or have more spare capacity).
#
# To make this safe to update when projects might be in the middle of migrations
# to add new Python / CUDA / OS, choose:
#
# - amd64-only
# - oldest-supported Python, CUDA, and operating system
# - some GPU with low queue

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Capacity is more important here. Even if we queue sometimes, a runner type with high capacity will chew through its queue faster.

Suggested change
# - some GPU with low queue
# - some GPU with high capacity (low queue)

# - latest driver
#
- { ARCH: 'amd64', PY_VER: '3.11', CUDA_VER: '12.9.2', LINUX_VER: 'rockylinux8', GPU: 'rtxpro6000', DRIVER: 'latest'}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to use some version of CUDA 13 for our docs builds. Python version is less important. We have better coverage of the environments for CUDA 13 and fewer packaging oddities as CUDA 12 gets harder to support.

nightly: *docs_build

wheels-build:
pull-request: &wheels_build
# amd64
Expand Down