TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX AVX2 To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
时间: 2023-12-03 22:03:47 浏览: 233
在tensorflow中设置使用某一块GPU、多GPU、CPU的操作
5星 · 资源好评率100%
这是 TensorFlow 在运行时输出的一条信息,告诉你当前使用的 TensorFlow 二进制文件已经使用了一个名为 oneDNN 的库来优化 CPU 计算性能,同时支持了 AVX 和 AVX2 指令集。如果你想在其他操作中使用这些指令集,可以通过重新编译 TensorFlow 并添加相应的编译器标志来实现。
在 TensorFlow 中,运行时信息通常只是一些提示性的信息,不会影响代码的执行。如果你在使用 TensorFlow 过程中遇到了问题,可以提供更详细的信息,这样我才能更好地帮助你解决问题。
阅读全文