From 7e00b02189e5ceb0c408df6c6d554d4d6e21bdf9 Mon Sep 17 00:00:00 2001 From: mmcky Date: Tue, 11 Nov 2025 14:30:12 +1100 Subject: [PATCH 1/2] TEST: full execution check --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bc26f081..dcdf7c792 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,13 +45,13 @@ jobs: - name: Display Pip Versions shell: bash -l {0} run: pip list - - name: Download "build" folder (cache) - uses: dawidd6/action-download-artifact@v11 - with: - workflow: cache.yml - branch: main - name: build-cache - path: _build + # - name: Download "build" folder (cache) + # uses: dawidd6/action-download-artifact@v11 + # with: + # workflow: cache.yml + # branch: main + # name: build-cache + # path: _build # Build Assets (Download Notebooks and PDF via LaTeX) - name: Build Download Notebooks (sphinx-tojupyter) shell: bash -l {0} From b0b6b6724e094e4790cbdaa671aeb7b9de30d267 Mon Sep 17 00:00:00 2001 From: mmcky Date: Tue, 11 Nov 2025 15:17:56 +1100 Subject: [PATCH 2/2] FIX: Switch from PyTorch nightly to stable release (2.9.0) with CUDA 12.8 - Remove --pre flag to avoid nightly builds - Change from /nightly/ to stable cu128 index - Fixes hash mismatch error in CI pipeline --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcdf7c792..4996ed101 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Install JAX, Numpyro, PyTorch shell: bash -l {0} run: | - pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128 + pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128 pip install pyro-ppl pip install --upgrade "jax[cuda12-local]==0.6.2" pip install numpyro pyro-ppl