Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ jobs:
options: --user root
steps:
- name: 'Dependencies'
run: pip install torch pybind11[global] einops onnxscript
run: |
pip install pybind11[global] einops onnxscript
pip install torch --index-url https://download.pytorch.org/whl/cu130
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: Installing PyTorch from cu130 index on JAX image (CUDA 12.6) may create CUDA version mismatch. The JAX container likely has CUDA 12.6system libraries, while PyTorch cu130 expects CUDA 13.0. Does the ghcr.io/nvidia/jax:jax container have CUDA 13.0 installed, or is it using CUDA 12.6? PyTorch cu130 requires CUDA 13.0 runtime.

- name: 'Checkout'
uses: actions/checkout@v3
with:
Expand Down