7
CPU는이 TensorFlow 바이너리가 사용하도록 컴파일되지 않았다는 지침을 지원합니다. AVX AVX2
저는 TensorFlow를 처음 사용합니다. 최근에 Windows CPU 버전을 설치했으며 다음 메시지가 표시되었습니다. tensorflow-1.4.0 설치 성공 tensorflow-tensorboard-0.4.0rc2 그런 다음 달리려고 할 때 import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() sess.run(hello) 'Hello, TensorFlow!' a = tf.constant(10) b = tf.constant(32) sess.run(a + b) 42 sess.close() ( https://github.com/tensorflow/tensorflow를 통해 찾았습니다 …
656
tensorflow
cpu
avx