-
Hello, Trying to correctly build jaxlib 0.4.34 from source with an already available cuda, cudnn, and nccl installation, it raises
I could try to symlink this path ( Commands used: module load cuda/12.2 cudnn/9.2 nccl/2.18 python/3.11 clang/17
git clone --depth 1 https://github.com/jax-ml/jax.git -b release/0.4.34
cd jax/build
python build.py --target_cpu_features=release --enable_cuda --use_clang --cuda_compute_capabilities='8.0' --cuda_version='12.2' --cudnn_version='9.2.1' --bazel_options=--repo_env=LOCAL_CUDA_PATH=$EBROOTCUDA --bazel_options=--repo_env=LOCAL_CUDNN_PATH=$EBROOTCUDNN --bazel_options=--repo_env=LOCAL_NCCL_PATH=$EBROOTNCCL --bazel_options=--local_cpu_resources=$SLURM_CPUS_PER_TASK How can I configure jaxlib to be built with the system installations ? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Docs are here: https://github.com/openxla/xla/blob/main/docs/hermetic_cuda.md However, note because of version compatibility, you shouldn't need to. Any reason you can't use the prebuilt jax artifacts? They should work with the versions you have. |
Beta Was this translation helpful? Give feedback.
Docs are here: https://github.com/openxla/xla/blob/main/docs/hermetic_cuda.md
However, note because of version compatibility, you shouldn't need to. Any reason you can't use the prebuilt jax artifacts? They should work with the versions you have.