-
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
ImportError: .../jaxlib/xla_extension.so: symbol cudnnSetCTCLossDescriptorEx version libcudnn.so.7 not defined in file libcudnn.so.7 with link time reference #2494
Comments
Is this a fresh install of CUDA / cuDNN? |
Ah yes that appears to have been the issue. I changed to cudnn-10.2-v7.6.5 and this solved it. |
Woo! We did it without having to ask Peter for help! |
I have cuda 10 and cudnn 7.4.1 and have the same issue (not a fresh cuda/cudnn installation). Should i necessarily install another cuda/cudann version? @mattjj |
@py4 So the original reason for the error was actually me not understanding compatibility between versions of CUDA and cuDNN correctly (as described in this table. I got it to work with CUDA 10.1.243 with driver 430.50 and cudnn-10.1-v7.6.3.30 (I think the 10.1 means it's installed to work with CUDA 10.1, and it's version 7.6.30). To my understanding, according to this table, you'd need a driver version of at least 410.48 for CUDA 10.0. Note that you may still get some warning messages. Even after getting it to work, I still got the following warnings:
P.S. You can figure out the driver version via |
@py4 yes, that means you need to install a newer CuDNN. Can you give that a go? Hope that helps! |
Just for reference, I have the same issue and the reason is also version unmatch or out-of-date amongst drivers, cuda, cudnn and jaxlib. It hard to determine which combination will fail since this list doesn't cover the whole story. |
I followed instructions on the README for installing with the following versions
I set the following environment variables
I get the error message listed in the title as soon as I
import jax
.Related issues include #989
The text was updated successfully, but these errors were encountered: