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
3 changes: 3 additions & 0 deletions lectures/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ sphinx:
advanced:
- "https://python-advanced.quantecon.org"
- null
jax:
- "https://jax.quantecon.org/"
- null
mathjax3_config:
tex:
macros:
Expand Down
5 changes: 2 additions & 3 deletions lectures/newton_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ kernelspec:
```

```{seealso}
**GPU:** A version of this lecture which makes use of [jax](https://jax.readthedocs.io) to run the code
on a `GPU` is [available here](https://jax.quantecon.org/newtons_method.html)
A version of this lecture using [JAX](https://github.com/jax-ml/jax) is {doc}`available here <jax:newtons_method>`
```

## Overview
Expand Down Expand Up @@ -790,7 +789,7 @@ With the larger overhead, the speed is not better than the optimized `scipy` fun
Our next step is to investigate a large market with 3,000 goods.

A JAX version of this section using GPU accelerated linear algebra and
automatic differentiation is available [here](https://jax.quantecon.org/newtons_method.html#application)
automatic differentiation is {doc}`available here <jax:newtons_method>`

The excess demand function is essentially the same, but now the matrix $A$ is $3000 \times 3000$ and the parameter vectors $b$ and $c$ are $3000 \times 1$.

Expand Down
3 changes: 1 addition & 2 deletions lectures/wealth_dynamics.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ kernelspec:
```

```{seealso}
A [version of this lecture](https://jax.quantecon.org/wealth_dynamics.html) using a `GPU`
is [available here](https://jax.quantecon.org/wealth_dynamics.html)
A version of this lecture using [JAX](https://github.com/jax-ml/jax) is {doc}`available here <jax:wealth_dynamics>`
```

In addition to what's in Anaconda, this lecture will need the following libraries:
Expand Down
Loading