当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。