tf.config.list_logical_devices
Stay organized with collections
Save and categorize content based on your preferences.
Return a list of logical devices created by runtime.
tf.config.list_logical_devices(
device_type=None
)
Used in the notebooks
Used in the guide |
Used in the tutorials |
|
|
Logical devices may correspond to physical devices or remote devices in the
cluster. Operations and tensors may be placed on these devices by using the
name
of the tf.config.LogicalDevice
.
Calling tf.config.list_logical_devices
triggers the runtime to configure any
tf.config.PhysicalDevice
visible to the runtime, thereby preventing
further configuration. To avoid runtime initialization, call
tf.config.list_physical_devices
instead.
For example:
logical_devices = tf.config.list_logical_devices('GPU')
if len(logical_devices) > 0:
# Allocate on GPU:0
with tf.device(logical_devices[0].name):
one = tf.constant(1)
# Allocate on GPU:1
with tf.device(logical_devices[1].name):
two = tf.constant(2)
Args |
device_type
|
(optional string) Only include devices matching this device
type. For example "CPU" or "GPU".
|
Notes
|
- If provided with any numerical values or any string other than
supported device type such as 'CPU' it returns an empty list instead of
raising error. 2. For default value it returns all logical devices
|
Returns |
List of initialized LogicalDevice s
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-26 UTC."],[],[]]