I am trying to use the Tensorflow Rust community bindings on Ubuntu 16.04 32bit. Compilation succeeds, and I have a working file libtensorflow.sothat links to the Rust program correctly, but as soon as I run the program, I get the following error:
F tensorflow/core/platform/cpu_feature_guard.cc:35] The TensorFlow library was compiled to use SSE instructions, but these aren't available on your machine.
I tried several solutions and I successfully got an accessible library libtensorflow_cc.sofor collaboration, but the same solutions that worked for this do not work for a shared library libtensorflow.so. I am trying to compile a tag r1.0from the main github tenorflow repository.
There is tensorflow.bzlno link specified in this , so the solution will not apply. I also tried to compile with bazel build --copt=-mno-sse ..., but that also didn't work. Any ideas on how to fix this?
source
share