Hi everyone,
I'm trying to run an TensorFlow example with nGraph-TensorFlow bridge but I receive the following error when sess.run() is called: Illegal instruction (core dumped).
When I run the code without importing ngraph_bridge it works perfectly.
I found that someone has met this problem before, but no system info is provided and the issue has beed closed. So I list my system info:
OS platform: Ubuntu 16.04.4 LTS (GNU/Linux 4.4.0-116-generic x86_64)
CPU: Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz
python:Python 3.5.2
GCC: GCC 5.4.0
I built ngraph_bridge with Option 1: Use a pre-built nGraph-TensorFlow bridge, and when running the command:
python -c "import tensorflow as tf; print('TensorFlow version: ',tf.version);import ngraph_bridge; print(ngraph_bridge.version)"
The result is:
TensorFlow version: 1.12.0
nGraph bridge version: b'0.11.0'
nGraph version used for this build: b'0.14.0+56a54ca'
TensorFlow version used for this build: v1.12.0-0-ga6d8ffa
I also tried to specify the version of ngraph_bridge==0.8.0, the result is:
TensorFlow version: r 1.12.0
TensorFlow version installed: 1.12.0 (v1.12.0-0-ga6d8ffae09)
nGraph bridge built with: 1.12.0 (v1.12.0-0-ga6d8ffa)
b'0.8.0'
But core dumped has occured on both versions.
Thank you!