-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for jax build including cuda plugin (#987)
Recently Google migrated (and completely abandoned) from jaxlib[cuda] (for instance, include CUDA backend in jaxlib) to CUDA plugin, which needs to be enabled separately along with --enable_cuda such as ``` python build/build.py --enable_cuda --build_gpu_plugin --gpu_plugin_cuda_version=<CUDA_VERSION>. ``` It would build three wheels: 1. jaxlib without CUDA 2. jax-cuda-plugin (for CUDA support) 3. jax-cuda-pjrt. They all need to be installed and added as build requirements.
- Loading branch information
Showing
3 changed files
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters