当前位置:主页 > 软件编程 > Python代码 >

在tensorflow中设置使用某一块GPU、多GPU、CPU的操作

时间: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"):

您可能感兴趣的文章:

相关文章