From 5e95069edd7f734e886b474d641bc3e6d6e4f73a Mon Sep 17 00:00:00 2001 From: John Stachurski Date: Fri, 21 Nov 2025 06:39:42 +0900 Subject: [PATCH] Update link to point to numba.html instead of parallelization.html MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The parallel programming lecture reorganization moved the Numba parallelization exercise to numba.md. Update the link accordingly. Related to QuantEcon/lecture-python-programming.myst#429 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- lectures/jax_intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/jax_intro.md b/lectures/jax_intro.md index 4a82127..bf4f036 100644 --- a/lectures/jax_intro.md +++ b/lectures/jax_intro.md @@ -674,7 +674,7 @@ jnp.allclose(z_vmap, z_mesh) :label: jax_intro_ex2 ``` -In the Exercise section of [a lecture on Numba and parallelization](https://python-programming.quantecon.org/parallelization.html), we used Monte Carlo to price a European call option. +In the Exercise section of [a lecture on Numba](https://python-programming.quantecon.org/numba.html), we used Monte Carlo to price a European call option. The code was accelerated by Numba-based multithreading.