在Intel Atom上构建Tensorflow

问题描述 投票:0回答:1

我正在尝试使用Bazel 0.15版本在Intel Atom上构建Tensorflow。

我按照指令here从Source withIntel®MKL获取Build TensorFlow。

我对英特尔凌动的bazel命令是

base build --config = mkl --cxxopt = -D_GLIBCXX_USE_CXX11_ABI = 0 --copt = -march = atom --copt = -mtune = atom

但它并没有成功。

安装有什么问题?

我使用的是英特尔®凌动™E3940。

错误是

~/tensorflow$ bazel build --config=mkl --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0 --copt=-march=atom --copt=-mtune=atom
Starting local Bazel server and connecting to it...
................................
INFO: Analysed 0 targets (2 packages loaded).
INFO: Found 0 targets...
INFO: Elapsed time: 6.529s, Critical Path: 0.04s
INFO: 0 processes.
INFO: Build completed successfully, 1 total action

我该如何解决这个问题?

tensorflow gcc x86 intel bazel
1个回答
0
投票

我的命令不完整。

完整的命令是

bazel build --config=mkl --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0 --copt=-march=atom --copt=-mtune=atom //tensorflow/tools/pip_package:build_pip_package
© www.soinside.com 2019 - 2024. All rights reserved.