时间:2020-12-09 20:18:13 | 栏目:Python代码 | 点击:次
tensorflow下设置使用某一块GPU(从0开始编号):
import os os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID" os.environ["CUDA_VISIBLE_DEVICES"] = "1"
多GPU:
num_gpus = 4 for i in range(num_gpus): with tf.device('/gpu:%d',%i): 。。。
只是用cpu的情况
with tf.device("/cpu:0"):