I am trying to build Tensorflow on Intel Atom using Bazel 0.15 version.
I followed the instruction here for Build TensorFlow from Source with Intel® MKL.
My bazel command for Intel Atom is
bazel build --config=mkl --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0 --copt=-march=atom --copt=-mtune=atom
But it didn't success.
What is wrong with the installation?
I am using Intel® Atom ™ E3940.
The error is
~/tensorflow$ bazel build --config=mkl --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0 --copt=-march=atom --copt=-mtune=atomStarting 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.04sINFO: 0 processes.INFO: Build completed successfully, 1 total action
How can I solve the issue?