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


Python tf.config.experimental.set_memory_growth用法及代码示例


设置是否应为 PhysicalDevice 启用内存增长。

用法

tf.config.experimental.set_memory_growth(
    device, enable
)

参数

  • device PhysicalDevice 进行配置
  • enable (布尔值)是否启用或禁用内存增长

抛出

  • ValueError 指定的 PhysicalDevice 无效。
  • RuntimeError 运行时已经初始化。

如果为 PhysicalDevice 启用内存增长,则运行时初始化将不会分配设备上的所有内存。无法在配置了虚拟设备的 PhysicalDevice 上配置内存增长。

例如:

physical_devices = tf.config.list_physical_devices('GPU')
try:
  tf.config.experimental.set_memory_growth(physical_devices[0], True)
except:
  # Invalid device or cannot modify virtual devices once initialized.
  pass

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.config.experimental.set_memory_growth。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。