當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.config.list_logical_devices用法及代碼示例


返回運行時創建的邏輯設備列表。

用法

tf.config.list_logical_devices(
    device_type=None
)

參數

  • device_type (可選字符串)僅包括與此設備類型匹配的設備。例如 "CPU" 或 "GPU"。

返回

  • 初始化 LogicalDevice 的列表

邏輯設備可以對應集群中的物理設備或遠程設備。可以使用 tf.config.LogicalDevicename 將操作和張量放置在這些設備上。

調用tf.config.list_logical_devices 會觸發運行時配置運行時可見的任何tf.config.PhysicalDevice,從而阻止進一步的配置。為避免運行時初始化,請改為調用tf.config.list_physical_devices

例如:

logical_devices = tf.config.list_logical_devices('GPU')
if len(logical_devices) > 0:
  # Allocate on GPU:0
  with tf.device(logical_devices[0].name):
    one = tf.constant(1)
  # Allocate on GPU:1
  with tf.device(logical_devices[1].name):
    two = tf.constant(2)

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.config.list_logical_devices。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。