Update index.md (#3564)

This commit is contained in:
ssyrain 2016-07-30 00:29:09 +08:00 committed by yifeif
parent b9986a0647
commit 4183d0a284

View File

@ -58,7 +58,7 @@ within that context will have the same device assignment.
with tf.device('/cpu: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)
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.