用法
list_devices()
列出此會話中的可用設備。
devices = sess.list_devices()
for d in devices:
print(d.name)
在哪裏:
列表中的每個元素都具有以下屬性
name
:帶有設備全名的字符串。前任:/job:worker/replica:0/task:3/device:CPU:0
device_type
:設備的類型(例如CPU
,GPU
,TPU
.)memory_limit
:設備上可用的最大內存量。注意:根據設備的不同,可用內存可能會大大減少。
相關用法
- Python tf.compat.v1.Session.partial_run用法及代碼示例
- Python tf.compat.v1.Session.as_default用法及代碼示例
- Python tf.compat.v1.Session.run用法及代碼示例
- Python tf.compat.v1.Session用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
- Python tf.compat.v1.layers.conv3d用法及代碼示例
- Python tf.compat.v1.strings.length用法及代碼示例
- Python tf.compat.v1.data.Dataset.snapshot用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代碼示例
- Python tf.compat.v1.feature_column.categorical_column_with_vocabulary_file用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代碼示例
- Python tf.compat.v1.variable_scope用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.as_numpy_iterator用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.covariance用法及代碼示例
- Python tf.compat.v1.placeholder用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.Session.list_devices。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。