Description
Please include all cudnn .dll files in your release.
If you have any other cuda toolkit installed, the kernel will pull missing .dll files regardless of if they are used by the program or not. Because you don't include them. With the new cudnn version 9 this leads to an instant crash of the exe with the CUDNN_STATUS_SUBLIBRARY_VERSION_MISMATCH error.
To fix this, you either have to remove the cuda toolkit from your PATH / system entirely, or delete the cudnn .dll files out of the array fire directory, so the system just uses the installed toolkit. This is error prone and also difficult to find initially
If you have other suggestions on how to fix that which don't include bloating the release I'm open to them :)
Description
Please include all cudnn .dll files in your release.
If you have any other cuda toolkit installed, the kernel will pull missing .dll files regardless of if they are used by the program or not. Because you don't include them. With the new cudnn version 9 this leads to an instant crash of the exe with the
CUDNN_STATUS_SUBLIBRARY_VERSION_MISMATCHerror.To fix this, you either have to remove the cuda toolkit from your PATH / system entirely, or delete the cudnn .dll files out of the array fire directory, so the system just uses the installed toolkit. This is error prone and also difficult to find initially
If you have other suggestions on how to fix that which don't include bloating the release I'm open to them :)