- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的测试
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
2019-12-27 10:51:17.887009: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libcuda.so.1'; dlerror: libcuda.so.1: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/openmpi/lib:
2019-12-27 10:51:17.888489: E tensorflow/stream_executor/cuda/cuda_driver.cc:318] failed call to cuInit: UNKNOWN ERROR (303)
2019-12-27 10:51:17.888992: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:156] kernel driver does not appear to be running on this host (3e7d899714a9): /proc/driver/nvidia/version does not exist
2019-12-27 10:51:17.890608: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-12-27 10:51:17.915554: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 2904000000 Hz
2019-12-27 10:51:17.918061: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x56101fca67e0 initialized for platform Host (this does not guarantee that XLA will be used). Devices:
2019-12-27 10:51:17.918228: I tensorflow/compiler/xla/service/service.cc:176] StreamExecutor device (0): Host, Default Version
tensorflow-gpu
安装包。普通的 TensorFlow 怎么会出现这个错误?
最佳答案
您可以尝试使用 tensorflow-cpu
在仅使用 CPU 的机器上解决此问题。包而不是 tensorflow
.
pip uninstall tensorflow
pip install tensorflow-cpu
关于python - tensorflow (不是 tensorflow -GPU): failed call to cuInit: UNKNOWN ERROR (303),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59499764/
我目前正在编写一个应用程序来流式传输 openGL 内容,因此将 CUDA 与 NVidias NVenc-API 结合使用。我注意到调用 cuInit(0) - 根据许多教程,这应该作为初始化 Cu
我的测试: import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session()` 错误: c:\
我正在使用动态语言 (Clojure) 以使用 JCuda 的交互式开发方式创建 CUDA 上下文。通常我会调用一个初始化器,其中包含对 jcuda.driver.JCudaDriver/cuInit
我安装了 CUDA 然后尝试了以下操作: In [1]: import pycuda.driver as cuda In [2]: cuda.init() ----------------------
我的程序中有以下代码可以使用纯驱动程序 API, cuInit(0) 并且 Nvidia Visual Profiler 8.0 没有在时间线图中显示它。 我可以偶尔调用它一次,还是像 pc 唤醒一样
我一直致力于让依赖于 TensorFlow 的应用程序作为带有 nvidia-docker 的 docker 容器工作。我已经在 tensorflow/tensorflow:latest-gpu-py
我是 TensorFlow 初学者,在尝试加载已保存的模型时遇到以下问题。 我正在关注本教程:https://youtu.be/6g4O5UOH304?t=7532 在视频中的那个点运行代码时,我遇到
我在 python 上使用 tensorflow 训练了一个没有问题的模型。我现在正尝试将此模型的推理集成到预先存在的支持 OpenGL 的软件中。但是,我在 cuInit 期间得到了一个 CUDA_
我的测试 import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() 我的错误 2019
我是一名优秀的程序员,十分优秀!