Help using cuDNN in Julia

Hello, everyone. I’m trying to use cuDNN in Julia, but so far it’s not working as expected. I’m very confused. It is supposed to be included in CUDA.jl so that I can use using CUDA.CUDNN, but when I do that, I get the error:

UndefVarError: CUDNN not defined in CUDA
Suggestion: check for spelling errors or missing imports.

Now I think I’ve made a mess because I added the package named cuDNN.jl and also tried to download it from the NVIDIA site, but so far I still can’t use cuDNN in my Julia code.

Any help or guidance would be greatly appreciated!

https://discourse.julialang.org/t/cudnn-in-julia/84330/2?u=notgigi

1 Like

cuDNN.jl was split into a separate package (that lives in the CUDA.jl repository) so to use it you must now use using cuDNN after adding it to your envoronment just like you would with CUDA.jl

1 Like