26. Execution Statistics#
This table contains the latest execution statistics.
Document |
Modified |
Method |
Run Time (s) |
Status |
---|---|---|---|---|
2025-06-23 03:38 |
cache |
71.15 |
✅ |
|
2025-06-23 03:38 |
cache |
21.98 |
✅ |
|
2025-06-23 03:38 |
cache |
13.4 |
✅ |
|
2025-06-23 03:39 |
cache |
24.45 |
✅ |
|
2025-06-23 03:41 |
cache |
143.64 |
✅ |
|
2025-06-23 03:41 |
cache |
1.0 |
✅ |
|
2025-06-23 03:41 |
cache |
9.74 |
✅ |
|
2025-06-23 04:17 |
cache |
2152.07 |
✅ |
|
2025-06-23 04:18 |
cache |
36.13 |
✅ |
|
2025-06-23 04:19 |
cache |
89.14 |
✅ |
|
2025-06-23 04:19 |
cache |
9.85 |
✅ |
|
2025-06-23 04:20 |
cache |
27.13 |
✅ |
|
2025-06-25 01:18 |
cache |
18.07 |
✅ |
|
2025-06-23 04:20 |
cache |
19.54 |
✅ |
|
2025-06-23 04:21 |
cache |
11.31 |
✅ |
|
2025-06-23 04:21 |
cache |
15.05 |
✅ |
|
2025-06-23 04:24 |
cache |
182.87 |
✅ |
|
2025-06-23 04:24 |
cache |
22.32 |
✅ |
|
2025-06-23 04:25 |
cache |
46.08 |
✅ |
|
2025-06-23 04:25 |
cache |
20.2 |
✅ |
|
2025-06-23 04:26 |
cache |
22.8 |
✅ |
|
2025-06-23 04:26 |
cache |
3.97 |
✅ |
|
2025-06-23 04:26 |
cache |
2.4 |
✅ |
|
2025-06-23 03:41 |
cache |
1.0 |
✅ |
|
2025-06-23 04:29 |
cache |
155.46 |
✅ |
|
2025-06-23 03:41 |
cache |
1.0 |
✅ |
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.
You can check the backend used by JAX using:
import jax
# Check if JAX is using GPU
print(f"JAX backend: {jax.devices()[0].platform}")
JAX backend: gpu
and the hardware we are running on:
!nvidia-smi
/home/runner/miniconda3/envs/quantecon/lib/python3.12/pty.py:95: RuntimeWarning: os.fork() was called. os.fork() is incompatible with multithreaded code, and JAX is multithreaded, so this will likely lead to a deadlock.
pid, fd = os.forkpty()
Mon Jun 23 04:26:25 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 575.51.03 Driver Version: 575.51.03 CUDA Version: 12.9 |
|-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 Tesla T4 Off | 00000000:00:1E.0 Off | 0 |
| N/A 36C P0 32W / 70W | 109MiB / 15360MiB | 2% Default |
| | | N/A |
+-----------------------------------------+------------------------+----------------------+
+-----------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=========================================================================================|
| 0 N/A N/A 6926 C ...da3/envs/quantecon/bin/python 106MiB |
+-----------------------------------------------------------------------------------------+