python-tensorflowHow can I check if my Python TensorFlow code is using the GPU?
To check if your Python TensorFlow code is using the GPU, you can use the tf.test.is_gpu_available()
method. This will return True
if a GPU is available and False
if it isn't.
Example
import tensorflow as tf
tf.test.is_gpu_available()
Output example
True
You can also use the tf.config.list_physical_devices('GPU')
method to list the physical GPUs available.
Example
import tensorflow as tf
tf.config.list_physical_devices('GPU')
Output example
[PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU')]
You can also use the tf.config.experimental.list_physical_devices('GPU')
method to list the physical GPUs available.
Example
import tensorflow as tf
tf.config.experimental.list_physical_devices('GPU')
Output example
[PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU')]
If you want to check which device your code is running on, you can use the tf.config.list_logical_devices()
method. This will list the available devices, including CPUs and GPUs.
Example
import tensorflow as tf
tf.config.list_logical_devices()
Output example
[LogicalDevice(name='/device:CPU:0', device_type='CPU'), LogicalDevice(name='/device:GPU:0', device_type='GPU')]
Helpful links
More of Python Tensorflow
- How can I use Python and TensorFlow to handle illegal hardware instructions in Zsh?
- How can I check the compatibility of different versions of Python and TensorFlow?
- How do I resolve a SymbolAlreadyExposedError when the symbol "zeros" is already exposed as () in TensorFlow Python util tf_export?
- How can I use YOLOv3 with Python and TensorFlow?
- ¿Cómo implementar reconocimiento facial con TensorFlow y Python?
- How can I use Python TensorFlow in W3Schools?
- How can I use TensorFlow 2.x to optimize my Python code?
- How can I install and use TensorFlow on a Windows machine using Python?
- How do Python TensorFlow and Keras compare in terms of performance and features?
- How can I release GPU memory when using Python TensorFlow?
See more codes...