打开或关闭设备放置决策的日志记录。
用法
tf.debugging.set_log_device_placement(
enabled
)
参数
-
enabled
是否启用设备放置日志记录。
操作在特定设备上执行,在该设备上产生和使用张量。这可能会改变操作的性能或要求 TensorFlow 将数据复制到加速器或从加速器复制数据,因此了解操作执行的位置对于调试性能问题很有用。
如需更高级的分析,请使用 TensorFlow 分析器。
操作的设备放置通常由tf.device
范围控制,但也有例外,例如在变量初始放置之后的tf.Variable
上的操作。关闭软设备放置(使用 tf.config.set_soft_device_placement
)可提供更明确的控制。
tf.debugging.set_log_device_placement(True)
tf.ones([])
# [...] op Fill in device /job:localhost/replica:0/task:0/device:GPU:0
with tf.device("CPU"):
tf.ones([])
# [...] op Fill in device /job:localhost/replica:0/task:0/device:CPU:0
tf.debugging.set_log_device_placement(False)
打开 tf.debugging.set_log_device_placement
还会在调用函数时记录操作在 tf.function
内的放置。
相关用法
- 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.assert_shapes用法及代码示例
- Python tf.device用法及代码示例
- 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.debugging.set_log_device_placement。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。