Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 9 additions & 1 deletion .github/workflows/execution-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ jobs:
- name: Install Jax [CPU]
shell: bash -l {0}
run: |
pip install "jax[CPU]"
# Pinned: jax 0.11.1 (2026-08-17) regresses XLA:CPU execution --
# numpy_vs_numba_vs_jax's lax.fori_loop and lax.scan cells go
# quadratic in n, so this -W build dies on CellTimeoutError. Matches
# the pin already in cache/ci/publish.yml; evidence and the exposure
# map are recorded in QuantEcon/workspace-lectures#49. With jax
# already present, the lecture's unpinned
# `!pip install quantecon jax` cell is satisfied and does not
# upgrade.
pip install "jax[CPU]==0.11.0"
- name: Build Lectures (+ Execution Checks)
shell: bash -l {0}
run: jb build lectures --path-output=./ -W --keep-going
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/execution-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ jobs:
- name: Install Jax [CPU]
shell: bash -l {0}
run: |
pip install "jax[CPU]"
# Pinned: jax 0.11.1 (2026-08-17) regresses XLA:CPU execution --
# numpy_vs_numba_vs_jax's lax.fori_loop and lax.scan cells go
# quadratic in n, so this -W build dies on CellTimeoutError. Matches
# the pin already in cache/ci/publish.yml; evidence and the exposure
# map are recorded in QuantEcon/workspace-lectures#49. With jax
# already present, the lecture's unpinned
# `!pip install quantecon jax` cell is satisfied and does not
# upgrade.
pip install "jax[CPU]==0.11.0"
- name: Build Lectures (+ Execution Checks)
shell: bash -l {0}
run: jb build lectures --path-output=./ -W --keep-going
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/execution-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,15 @@ jobs:
- name: Install Jax [CPU]
shell: bash -l {0}
run: |
pip install "jax[CPU]"
# Pinned: jax 0.11.1 (2026-08-17) regresses XLA:CPU execution --
# numpy_vs_numba_vs_jax's lax.fori_loop and lax.scan cells go
# quadratic in n, so this -W build dies on CellTimeoutError. Matches
# the pin already in cache/ci/publish.yml; evidence and the exposure
# map are recorded in QuantEcon/workspace-lectures#49. With jax
# already present, the lecture's unpinned
# `!pip install quantecon jax` cell is satisfied and does not
# upgrade.
pip install "jax[CPU]==0.11.0"
- name: Build Lectures (+ Execution Checks)
shell: powershell
run: jb build lectures --path-output=./ -W --keep-going
Expand Down
Loading