how to check gpu using tensorflow code example
Example 1: check if tensorflow gpu is installed
import tensorflow as tf
print(tf.test.gpu_device_name())
Example 2: tensorflow cant see gpu
$ pip uninstall tensorflow
$ pip install tensorflow-gpu
import tensorflow as tf
print(tf.test.gpu_device_name())
$ pip uninstall tensorflow
$ pip install tensorflow-gpu