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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os:
["ubuntu-22.04"] # "windows-2025" # Disabled until solution/workaround for NVTX is present
["ubuntu-22.04", "windows-2025"]
# "ubuntu-24.04" # Postponed as long as testing against CUDA 12.1, needs 12.6+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]

Expand Down Expand Up @@ -55,9 +55,9 @@ jobs:

- name: Set up CUDA toolkit (Windows)
if: runner.os == 'Windows'
uses: Jimver/cuda-toolkit@master
uses: Jimver/cuda-toolkit@v0.2.24 # https://github.com/Jimver/cuda-toolkit/issues/395
with:
cuda: "12.4.0"
cuda: "12.8.0"
method: "network"

- name: Install torch with CUDA support (Ubuntu)
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Install torch with CUDA support (Windows)
if: runner.os == 'Windows'
run: python -m pip install torch --index-url https://download.pytorch.org/whl/cu124
run: python -m pip install torch --index-url https://download.pytorch.org/whl/cu128

- name: Install torchhull
run: python -m pip install --editable ".[dev]"
Expand Down
Loading