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
27 changes: 26 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
pip install hatch
hatch run docs:build

test:
test-linux:
name: test (${{ matrix.platform.runner }})
runs-on: ${{ matrix.platform.runner }}
strategy:
Expand All @@ -60,3 +60,28 @@ jobs:
run: |
pip install hatch
hatch run test_cu13:run

test-windows:
name: test (windows-amd64-gpu-a100-latest-1)
runs-on: windows-amd64-gpu-a100-latest-1
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: "Install NCU 2026.2.1.0 (CUDA 13.3 Update 1)"
shell: pwsh
run: |
curl.exe -L -o ncu_installer.msi "https://developer.nvidia.com/downloads/assets/tools/secure/nsight-compute/2026_2_1/nsight_compute-windows-x86_64-2026.2.1.6.msi"
Start-Process msiexec.exe -Wait -ArgumentList '/i ncu_installer.msi /quiet /norestart'
Remove-Item ncu_installer.msi
"C:\Program Files\NVIDIA Corporation\Nsight Compute 2026.2.1" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: "Install PyTorch (CUDA 13.2)"
shell: pwsh
run: |
pip install torch --index-url https://download.pytorch.org/whl/cu132
- name: "Running Tests"
shell: pwsh
run: |
pip install hatch
hatch run test_cu13:run
Loading