【发布时间】:2018-09-09 09:40:21
【问题描述】:
环境:
- Windows 10 x64,
- Node.js v10,
- @tensorflow/tfjs-node v0.1.15
我正在尝试在 Node.js 上使用 tensorflow.js。
我安装了tfjs-node,它自动构建成功(node-gyp),但运行时收到以下错误:
tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
Python版本中的类似问题可以在这里找到:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
目前,我不关心性能,所以我只想禁用警告,不要启用 AVX/FMA。在 JavaScript 中,我应该怎么做?
【问题讨论】:
标签: javascript tensorflow