Created
May 31, 2019 16:57
-
-
Save manparvesh/b71c5396b97bd42b294ac66d8a264c6b to your computer and use it in GitHub Desktop.
Testing if tensorflow is using GPU acceleration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
# If this program does not throw any error while running, it means GPU acceleration is being used. | |
# If there is an error message after running this program, you need to check you graphics driver settings | |
with tf.device('/gpu:0'): | |
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) | |
with tf.Session() as sess: | |
print (sess.run(c)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment