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


Python tf.config.experimental.get_memory_growth用法及代碼示例


獲取是否為 PhysicalDevice 啟用了內存增長。

用法

tf.config.experimental.get_memory_growth(
    device
)

參數

  • device PhysicalDevice 進行查詢

返回

  • 一個布爾值,指示 PhysicalDevice 的內存增長設置。

拋出

  • ValueError 指定的 PhysicalDevice 無效。

如果為 PhysicalDevice 啟用內存增長,則運行時初始化將不會分配設備上的所有內存。

例如:

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

相關用法


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