Skip to content

Update installation to mention hardware support #203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,14 @@ pip install jax-ai-stack[tfds]
will install a compatible version of
[tensorflow](https://github.com/tensorflow/tensorflow)
and [tensorflow-datasets](https://github.com/tensorflow/datasets).

### Hardware support

To install `jax-ai-stack` with hardware-specific JAX support, add the JAX installation
command in the same `pip install` invocation. For example:
```
pip install jax-ai-stack "jax[cuda]" # JAX + AI stack with GPU/CUDA support
pip install jax-ai-stack "jax[tpu]" # JAX + AI stack with TPU support
```
For more information on available options for hardware-specific JAX installation, refer
to [JAX installation](https://docs.jax.dev/en/latest/installation.html).
12 changes: 12 additions & 0 deletions docs/source/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,15 @@ command:
pip install jax-ai-stack==2024.11.1
```
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).


## Hardware support

To install `jax-ai-stack` with hardware-specific JAX support, add the JAX installation
command in the same `pip install` invocation. For example:
```
pip install jax-ai-stack "jax[cuda]" # JAX + AI stack with GPU/CUDA support
pip install jax-ai-stack "jax[tpu]" # JAX + AI stack with TPU support
```
For more information on available options for hardware-specific JAX installation, refer
to [JAX installation](https://docs.jax.dev/en/latest/installation.html).