2023-05-10 01:10:36.875483: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
时间: 2023-06-15 12:04:16 浏览: 160
这个警告信息是因为 TensorFlow 没有找到 CUDA 运行库文件,可能是因为您没有安装 CUDA 或者 CUDA 安装不正确。您可以尝试重新安装 CUDA 或使用 TensorFlow 的 CPU 版本。如果您正在使用 TensorFlow 2.x 版本,可以尝试使用以下代码禁用 GPU:
```
import os
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
```
这将禁用 TensorFlow 对 GPU 的使用。
相关问题
2023-06-10 16:51:11.329824: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library cudnn64_7.dll 2023-06-10 16:56:47.339190: W tensorflow/stream_executor/cuda/redzone_allocator.cc:312] Internal: Invoking ptxas not supported on Windows Relying on driver to perform ptx compilation. This message will be only logged once. 2023-06-10 16:56:47.537030: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library cublas64_100.dll Traceback (most recent call last):
看起来这是一个 TensorFlow 在 Windows 操作系统上运行时遇到的警告和错误消息。警告消息 "Internal: Invoking ptxas not supported on Windows" 表示在 Windows 操作系统上使用 ptxas 编译器的操作不受支持,因此必须依赖驱动程序来执行 ptx 编译。错误消息的具体内容需要查看 Traceback 中的栈跟踪信息才能确定。请提供更多上下文信息以获得更准确的答案。
2023-06-05 16:56:08.991505: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found 2023-06-05 16:56:08.991599: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
这段信息是来自TensorFlow的警告信息,它表示在加载TensorFlow时,无法找到CUDA运行库文件"cudart64_110.dll",如果您的机器上没有GPU,则可以忽略此警告。如果您的机器上有GPU,那么您需要安装CUDA运行库,并确保其版本与TensorFlow匹配。您可以通过在命令行中运行“nvcc -V”命令来检查CUDA的版本。
阅读全文