From c4346f020c3f29eb705a0e33e5b3b28b1c1f4804 Mon Sep 17 00:00:00 2001 From: mmcky Date: Tue, 8 Apr 2025 14:02:55 +1000 Subject: [PATCH 1/2] Enable software version checking --- lectures/status.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lectures/status.md b/lectures/status.md index 1118072..7350476 100644 --- a/lectures/status.md +++ b/lectures/status.md @@ -21,6 +21,19 @@ This table contains the latest execution statistics. These lectures are built on `linux` instances through `github actions` that has access to a `gpu`. These lectures make use of the nvidia `T4` card. +These lectures are using the following python version + +```{code-cell} ipython +!python --version +``` + +and the following package versions + +```{code-cell} ipython +:tags: [hide-output] +!conda list +``` + You can check the backend used by JAX using: ```{code-cell} ipython3 @@ -33,4 +46,5 @@ and the hardware we are running on: ```{code-cell} ipython3 !nvidia-smi -``` \ No newline at end of file +``` + From ce1215ac6f14938672a73207a3b0516b3f250130 Mon Sep 17 00:00:00 2001 From: mmcky Date: Tue, 8 Apr 2025 15:01:59 +1000 Subject: [PATCH 2/2] tmp: disable cache --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 448707e..95fbdcc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ jobs: preview: runs-on: quantecon-gpu container: - image: ghcr.io/quantecon/lecture-python-container:cuda-12.6.0-anaconda-2024-10-py312-b + image: ghcr.io/quantecon/lecture-python-container:cuda-12.8.1-anaconda-2024-10-py312 options: --gpus all steps: - uses: actions/checkout@v4 @@ -24,13 +24,13 @@ jobs: - name: Display Pip Versions shell: bash -l {0} run: pip list - - name: Download "build" folder (cache) - uses: dawidd6/action-download-artifact@v3 - with: - workflow: cache.yml - branch: main - name: build-cache - path: _build + # - name: Download "build" folder (cache) + # uses: dawidd6/action-download-artifact@v3 + # 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}