You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/install.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,3 +35,15 @@ command:
35
35
pip install jax-ai-stack==2024.11.1
36
36
```
37
37
For the full list of released versions and the pinned packages, refer to the [Change log](https://github.com/jax-ml/jax-ai-stack/blob/main/CHANGELOG.md).
38
+
39
+
40
+
## Hardware support
41
+
42
+
To install `jax-ai-stack` with hardware-specific JAX support, add the JAX installation
43
+
command in the same `pip install` invocation. For example:
44
+
```
45
+
pip install jax-ai-stack "jax[cuda]" # JAX + AI stack with GPU/CUDA support
46
+
pip install jax-ai-stack "jax[tpu]" # JAX + AI stack with TPU support
47
+
```
48
+
For more information on available options for hardware-specific JAX installation, refer
49
+
to [JAX installation](https://docs.jax.dev/en/latest/installation.html).
0 commit comments