Replies: 2 comments 2 replies
-
Have you solved it now? This question has been bothering me for many days. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi.
Previously I had no problem using JAX on my PC, that has CUDA version of 11.
Now, I'm trying to use JAX on my laptop, whose CUDA version is 12.2.
So I installed JAX with the code below
pip install --upgrade "jax[cuda12_pip]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
It was installed successfully, but when I used JAX, I got the following error:
But when I checked
I did get
gpu
I uninstalled JAX and JAXlib again and installed again with
pip install "jax[cuda]"==0.4.13 -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
but I still got the same error.
I tried to check the cuDNN version
cat /usr/local/cuda/include/cudnn_version.h | grep CUDNN_MAJOR -A 2
but I got
cat: /usr/local/cuda/include/cudnn_version.h: No such file or directory
So I printed cuDNN version manually and I got
CUDA version, cuDNN version, and JAX version seem to have no problem, but I don't know why I'm getting this error.
I've been struggling with this for hours, and I would greatly appreciate if someone could help me with this. Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions