Skip to content

Instantly share code, notes, and snippets.

@oelmekki

oelmekki/gpu.py Secret

Created February 18, 2017 14:28
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 oelmekki/cafda411bf5c2ea695d984fa98e0995b to your computer and use it in GitHub Desktop.
Save oelmekki/cafda411bf5c2ea695d984fa98e0995b to your computer and use it in GitHub Desktop.
import tensorflow as tf
import numpy as np
# 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