check tensorflow gpu code example
Example 1: check if tensorflow gpu is installed
import tensorflow as tf
print(tf.test.gpu_device_name())
Example 2: tensorflow gpu test
import tensorflow as tf
print("Num GPUs Available: ", len(tf.config.experimental.list_physical_devices('GPU')))
Example 3: tensorflow check gpu
tf.config.list_physical_devices('GPU')
Example 4: tensorflow gpu test
tf.test.is_gpu_available(
cuda_only=False, min_cuda_compute_capability=None
)
Example 5: tensorflow cant see gpu
$ pip uninstall tensorflow
$ pip install tensorflow-gpu
Example 6: tensorflow gpu test
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))