指定在此上下文中創建/執行的操作的設備。
用法
tf.device(
device_name
)
參數
-
device_name
在上下文中使用的設備名稱。
返回
- 一個上下文管理器,它指定用於新創建的操作的默認設備。
拋出
-
RuntimeError
如果傳入一個函數。
此函數指定用於在特定上下文中創建/執行的操作的設備。嵌套上下文將繼承並在指定設備上創建/執行其操作。如果不需要特定設備,請考慮不使用此函數,以便自動分配設備。通常,此函數的使用是可選的。 device_name
可以完全指定,如“/job:worker/task:1/device:cpu:0”,或部分指定,僅包含"/" 分隔字段的子集。指定的任何字段都將覆蓋來自外部範圍的設備注釋。
例如:
with tf.device('/job:foo'):
# ops created here have devices with /job:foo
with tf.device('/job:bar/task:0/device:gpu:2'):
# ops created here have the fully specified device above
with tf.device('/device:gpu:1'):
# ops created here have the device '/job:foo/device:gpu:1'
相關用法
- Python tf.debugging.enable_check_numerics用法及代碼示例
- Python tf.debugging.assert_type用法及代碼示例
- Python tf.debugging.check_numerics用法及代碼示例
- Python tf.debugging.experimental.enable_dump_debug_info用法及代碼示例
- Python tf.debugging.Assert用法及代碼示例
- Python tf.debugging.set_log_device_placement用法及代碼示例
- Python tf.debugging.assert_shapes用法及代碼示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代碼示例
- Python tf.data.Dataset.take_while用法及代碼示例
- Python tf.data.experimental.RandomDataset.group_by_window用法及代碼示例
- Python tf.data.TFRecordDataset.filter用法及代碼示例
- Python tf.data.TextLineDataset.reduce用法及代碼示例
- Python tf.data.TextLineDataset.with_options用法及代碼示例
- Python tf.data.experimental.SqlDataset.enumerate用法及代碼示例
- Python tf.data.TextLineDataset.as_numpy_iterator用法及代碼示例
- Python tf.data.experimental.make_saveable_from_iterator用法及代碼示例
- Python tf.distribute.TPUStrategy用法及代碼示例
- Python tf.data.TextLineDataset.random用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.repeat用法及代碼示例
- Python tf.data.TFRecordDataset.random用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.device。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。