From c57753d251b31eea3b39b407716f25f07574bf43 Mon Sep 17 00:00:00 2001 From: lion187 Date: Wed, 13 Mar 2019 17:48:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20CUDA=20=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Software/Application/Tensorflow/安装_Tensorflow.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Software/Application/Tensorflow/安装_Tensorflow.md b/Software/Application/Tensorflow/安装_Tensorflow.md index 18f2301..fd042bd 100644 --- a/Software/Application/Tensorflow/安装_Tensorflow.md +++ b/Software/Application/Tensorflow/安装_Tensorflow.md @@ -44,7 +44,9 @@ | 1.0.0 | 2017-02-15 | | 0.12.1 | 2016-12-20 | -更详细的版本历史请访问: +更详细的版本历史请访问: + +如果要安装 GPU 版本,需要 GPU 支持 CUDA,并且先安装 NVIDIA CUDA 包,如需查询哪些 GPU 支持 CUDA,并且想了解性能,可访问: ## 验证 @@ -56,8 +58,8 @@ >>> print(sess.run(hello)) Hello, TensorFlow! >>> a = tf.constant(10) - >>> b = tf.constant(32) - >>> print sess.run(a+b) - 42 + >>> b = tf.constant(32) + >>> print sess.run(a+b) + 42 如果能正确打印,则说明安装成功。