-
When following the build from source guide at the url: https://jax.readthedocs.io/en/latest/developer.html I encounter an issue with the command: python build/build.py build --wheels=jaxlib --verbose The flag "--wheels=jaxlib" doesn't seem to be a valid argument for build.py. The shell output is pasted below. The command is run in a Conda environment with CUDA 12.5 and CUDNN 9.3 on the jax repo with tag jax-v0.4.32. Furthermore, the Python version is 3.12.8. (JAX-0432-CUDA-1251) ➜ jax git:(jax-v0.4.32) ✗ python build/build.py build --wheels=jaxlib --verbose usage: build.py [-h] [--verbose [VERBOSE] | --noverbose] [--bazel_path BAZEL_PATH] NOTE: I searched for similar discussions. Based on those discussions, it seems people were building with alternative flags. However, it would be good if the docs were updated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
From a discussion perspective, it would be good to know:
|
Beta Was this translation helpful? Give feedback.
Thanks for the question! Yes, I believe the readthedocs page is up to date, but those docs are for the current version of JAX (0.4.38), and I wouldn't necessarily expect those instructions to work with older versions like the one you're trying (0.4.32). Unfortunately we don't have an archive of the rendered docs from that version, but you could take a look at the
docs/developer.md
file in the JAX repo at that tag for the state when that release was made. Hope that helps!