Skip to content

Commit a2e621e

Browse files
committed
add gpu tag
1 parent b669a86 commit a2e621e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

lectures/kesten_processes.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ kernelspec:
1919

2020
# Kesten Processes and Firm Dynamics
2121

22+
```{note}
23+
This lecture is built using [hardware](status:machine-details) that
24+
has access to a GPU. This means that
25+
26+
1. the lecture might be significantly slower when running on your machine, and
27+
2. the code is well-suited to execution with [Google colab](https://colab.research.google.com/github/QuantEcon/lecture-python-programming.notebooks/blob/master/jax_intro.ipynb)
28+
```
29+
2230
```{index} single: Linear State Space Models
2331
```
2432

@@ -34,6 +42,12 @@ tags: [hide-output]
3442
---
3543
!pip install quantecon
3644
!pip install --upgrade yfinance
45+
46+
# If you are running on a machine without CUDA support, then run the line below:
47+
# !pip install --upgrade "jax[CPU]"
48+
49+
# If you have CUDA support on your machine, then run the following:
50+
# !pip install --upgrade "jax[cuda]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
3751
```
3852

3953
## Overview

0 commit comments

Comments
 (0)