From acf46746ce1fc376fee3ca2f74c22ecfeb2628b2 Mon Sep 17 00:00:00 2001 From: blairhan Date: Wed, 20 Mar 2019 01:16:50 +0900 Subject: [PATCH] type-o error fixed --- tools/tf_env_collect.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tf_env_collect.sh b/tools/tf_env_collect.sh index a1c9c88c58c..6f873451168 100755 --- a/tools/tf_env_collect.sh +++ b/tools/tf_env_collect.sh @@ -76,7 +76,7 @@ cat < /tmp/check_tf.py import tensorflow as tf; print("tf.VERSION = %s" % tf.VERSION) print("tf.GIT_VERSION = %s" % tf.GIT_VERSION) -print("tf.COMPILER_VERSION = %s" % tf.GIT_VERSION) +print("tf.COMPILER_VERSION = %s" % tf.COMPILER_VERSION) with tf.Session() as sess: print("Sanity check: %r" % sess.run(tf.constant([1,2,3])[:1])) EOF