Skip to content

Commit 69b7676

Browse files
committed
fixed typo
1 parent a39e251 commit 69b7676

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gpu-tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import tensorflow as tf
22

3-
print('RUNNING ON DEFAULT HARDWARE')
3+
print('running on default hardware...')
44

55
# creates a graph.
66
a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3], name='a')
@@ -11,7 +11,7 @@
1111
# Runs the op.
1212
print(sess.run(c))
1313

14-
print('RUNNING ON REQUESTED GPU')
14+
print('running on gpu hardware...')
1515

1616
# Creates a graph.
1717
with tf.device('/gpu:0'):

0 commit comments

Comments
 (0)