RuntimeError: D:\a\_work\1\s\onnxruntime\python\onnxruntime_pybind_state.cc:636 onnxruntime::python::CreateExecutionProviderInstance CUDA_PATH is set but CUDA wasn't able to be loaded. Please install the correct version of CUDA and cuDNN as mentioned in the GPU requirements page (https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirements), make sure they're in the PATH, and that your GPU is supported.
时间: 2024-04-22 16:26:58 浏览: 1291
onnxruntime-projects:一些onnxruntime项目的代码
3星 · 编辑精心推荐
这个错误是由于CUDA路径未正确设置或未正确安装和cuDNN造成的。请按照以下步骤进行排查和解决:
1. 确保您的计算机上已正确安装了CUDA和cuDNN。请参考onnxruntime官方文档中的GPU要求页面(https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirements)了解所需的CUDA和cuDNN版本。
2. 确保CUDA和cuDNN的安装路径已添加到系统的环境变量PATH中。您可以编辑环境变量来添加这些路径,或者在安装CUDA时选择将其添加到系统路径中。
3. 检查您的GPU是否被支持。在onnxruntime官方文档中的GPU要求页面中,可以找到支持的GPU型号列表,确保您的GPU型号在其中。
如果您已经按照上述步骤进行了检查和设置,但问题仍然存在,请提供更多详细信息,以便我们能够更准确地帮助您解决问题。
阅读全文