Установка Tensorflow на процессор Intel Core i3 Windows 10 с графическим процессором nVIDIA GEFORCE 920M

Я пытаюсь установить, используя инструкции здесь

У меня есть совместимый графический процессор nVIDIA GEFORCE 920M, набор инструментов CRUD DNN и драйвер, установленные в системе. когда я делаю шаг в программе python для проверки установки тензорного потока на GPU:

import tensorflow as tf
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))

Вывод, который я получаю:

>>> sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
2017-05-28 09:38:01.349304: W c:\tf_jenkins\home\workspace\release-   
win\device\cpu\os\windows\tensorflow\core\platform\cpu_feature_guard.cc:45] 
The TensorFlow library wasn't compiled to use SSE instructions, but these 
are available on your machine and could speed up CPU computations.


2017-05-28 09:38:01.349459: W c:\tf_jenkins\home\workspace\release- 
win\device\cpu\os\windows\tensorflow\core\platform\cpu_feature_guard.cc:45] 
The TensorFlow library wasn't compiled to use SSE2 instructions, but these 
are available on your machine and could speed up CPU computations.

2017-05-28 09:38:01.349583: W c:\tf_jenkins\home\workspace\release-
win\device\cpu\os\windows\tensorflow\core\platform\cpu_feature_guard.cc:45]  
The TensorFlow library wasn't compiled to use SSE3 instructions, but these 
are available on your machine and could speed up CPU computations.

2017-05-28 09:38:01.349705: W c:\tf_jenkins\home\workspace\release-
win\device\cpu\os\windows\tensorflow\core\platform\cpu_feature_guard.cc:45] 
The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these 
are available on your machine and could speed up CPU computations.

2017-05-28 09:38:01.354312: I c:\tf_jenkins\home\workspace\release-
win\device\cpu\os\windows\tensorflow\core\common_runtime\direct_session.cc:257] Device mapping:

Мои наводящие вопросы к вам:

  1. Почему графический процессор nVIDIA не определяется, когда все библиотеки и наборы инструментов установлены без ошибок?

  2. Почему в выводе говорится: «Библиотека TensorFlow не была скомпилирована для использования инструкций SSE4.1, но они доступны на вашем компьютере и могут ускорить вычисления ЦП» и как мне это исправить?

  3. Пожалуйста, дайте пошаговое решение. Ни один другой.

Заранее спасибо за ваши ответы.


person gather bar    schedule 28.05.2017    source источник


Ответы (1)


Хорошо, мои точечные ответы:

Why is the nVIDIA GPU not getting detected when all librariries and toolkits are installed without errors?

Ответ: Перейдите в приложение NVidia GEFORCE и обновите драйвер, после чего библиотеки начнут обнаруживаться, и ошибки исчезнут.

Why is it the output saying "TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations" and how do i rectify this?

Ответ: После того, как вы выполните вышеуказанное обновление, библиотека TensorFlow перестанет выдавать ошибки SSE. Это решит вашу проблему.

Please give a step by step solution. None other.

Ответ: Приведенное выше должно работать, это сработало для меня.

person Community    schedule 11.06.2017
comment
Это сработало и для меня. Спасибо за ваш точечный ответ @Hillary - person gather bar; 11.06.2017