-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
ptxas : Unsupported .version 8.4; current version is '8.2' with jaxlib 0.4.34 #25344
Comments
A similar issue on AF3 : google-deepmind/alphafold3#68 |
I think it's a problem in jax-triton, which I have encountered. At that time, i modify jax-triton in triton_lib.py with option |
@Rick0827 Yes, you are right!! Thanks I can reproduce this using the add example of
And adding
This originally comes from the
Solutions:
Thanks |
Closing as solutions works and more a jax-triton/triton issue. |
I got the same error when using JAX with cuda 12.2. I read @ccoulombe 's solution but I don't even have jax-triton installed, so this might still be an unsolved issue. How to reproduceThe error can be reproduced in a clean env: mamba create -n test python=3.12
mamba activate test
pip install -U "jax[cuda12]" Then in python, the following code import jax.numpy as jnp
x = jnp.arange(5.0) caused the following error: Error message
Also my LD_LIBRARY_PATH is empty. System infoGPU: RTX4090 The most bizarre thing to me is that I cannot find the complained ptxas version 8.2 or 8.3 anywhere in my system. The version that comes with cuda install or the version in the virtual env are both v12.xx. Any idea what I can do to further debug? |
Description
Running the inference stage from Alphafold 3, some users are running into the error
It is my understanding, according to the jax documentation that jaxlib 0.4.34 was built with cuda 12.3 but is compatible with 12.1+.
Also, according to nvida ptxas documentation, cuda 12.3 is ISA 8.3, yet the error says 8.4 which corresponds to cuda 12.4.
Hence, which cuda was used to actually built jaxlib and its plugins ?
Possible alternative solution: use cuda 12.4+
System info (python version, jaxlib version, accelerator, etc.)
Jaxlib : v0.4.34
From pypi, patched and tested to work with our installed cuda 12.2
Cuda version: 12.2
GPU device: A100
nvidia driver: 550.127.08
The text was updated successfully, but these errors were encountered: