How to test if GPU is working Tensorflow 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
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))