安装tensorflow后的消息
Message after installing tensorflow
我刚刚在 Ubuntu 16.04
上为 Python3.5 安装了 tensorflow
,因为它是预安装的 Python3 版本。
我通过 pip3 install tensorflow-cpu
安装,我使用 cpu 因为我的 Ubuntu 16.04 无法识别我相当新的笔记本电脑中的 GPU,但这是另一个问题。
因此,在我使用 tensorflow 尝试一个简单的 hello world 程序后,我收到了以下消息:
2020-11-01 09:36:51.577315: I tensorflow/core/platform/cpu_feature_guard.cc:142] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN)to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
我不太明白这是什么意思。我必须重新构建 tensorflow 还是可以将它用于这样的 ML 任务?如果是这样,我如何使用适当的编译器标志正确地做到这一点?
此致:)
您可以忽略该信息性消息并继续您的 ML 工作。
它只是告诉您,您可以 重建 Tensorflow,以便使用您 CPU 支持的更多高级指令。
我刚刚在 Ubuntu 16.04
上为 Python3.5 安装了 tensorflow
,因为它是预安装的 Python3 版本。
我通过 pip3 install tensorflow-cpu
安装,我使用 cpu 因为我的 Ubuntu 16.04 无法识别我相当新的笔记本电脑中的 GPU,但这是另一个问题。
因此,在我使用 tensorflow 尝试一个简单的 hello world 程序后,我收到了以下消息:
2020-11-01 09:36:51.577315: I tensorflow/core/platform/cpu_feature_guard.cc:142] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN)to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
我不太明白这是什么意思。我必须重新构建 tensorflow 还是可以将它用于这样的 ML 任务?如果是这样,我如何使用适当的编译器标志正确地做到这一点?
此致:)
您可以忽略该信息性消息并继续您的 ML 工作。
它只是告诉您,您可以 重建 Tensorflow,以便使用您 CPU 支持的更多高级指令。