Skip to content

Instantly share code, notes, and snippets.

@ProGamerGov
Last active January 5, 2017 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ProGamerGov/b1550e5f6b7bf6e032378597262b88d8 to your computer and use it in GitHub Desktop.
Save ProGamerGov/b1550e5f6b7bf6e032378597262b88d8 to your computer and use it in GitHub Desktop.
Tests whether or not Tensorflow sees your GPU or CPU
import tensorflow as tf
# Creates a graph.
a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3], name='a')
b = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[3, 2], name='b')
c = tf.matmul(a, b)
# Creates a session with log_device_placement set to True.
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
# Runs the op.
print sess.run(c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment