作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想指定 gpu 来运行我的进程。我将其设置如下:
import tensorflow as tf
with tf.device('/gpu:0'):
a = tf.constant(3.0)
with tf.Session() as sess:
while True:
print sess.run(a)
| 0 7479 C python 5437MiB
| 1 7479 C python 5437MiB
最佳答案
相信你需要设置CUDA_VISIBLE_DEVICES=1
.或者你想使用哪个 GPU。如果你只让一个 GPU 可见,你将把它称为 /gpu:0
在 tensorflow 中,无论您将环境变量设置为什么。
有关该环境变量的更多信息:https://devblogs.nvidia.com/cuda-pro-tip-control-gpu-visibility-cuda_visible_devices/
关于tensorflow - 如何在tensorflow中设置特定的gpu?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40069883/
我是一名优秀的程序员,十分优秀!