指定在此上下文中创建/执行的操作的设备。
用法
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。