diff --git a/README.md b/README.md index e10fd0512..c13c51094 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo: git clone https://github.com/tensorflow/ngraph-bridge.git cd ngraph-bridge - git checkout v0.17.0-rc3 + git checkout v0.17.0-rc4 Run the following Python script to build TensorFlow, nGraph, and the bridge. Use Python 3.5: diff --git a/ngraph_bridge/version.cc b/ngraph_bridge/version.cc index f90bb18ea..54974d8da 100644 --- a/ngraph_bridge/version.cc +++ b/ngraph_bridge/version.cc @@ -32,7 +32,7 @@ // candidate such as v0.7.0-rc0 // The code in master will always have the last released version number // with a suffix of '-master' -#define NG_TF_VERSION_SUFFIX "-rc3" +#define NG_TF_VERSION_SUFFIX "-rc4" #define VERSION_STR_HELPER(x) #x #define VERSION_STR(x) VERSION_STR_HELPER(x) diff --git a/python/setup.in.py b/python/setup.in.py index b40555c68..8f30f3719 100644 --- a/python/setup.in.py +++ b/python/setup.in.py @@ -59,7 +59,7 @@ def get_tag(self): setup( name='ngraph_tensorflow_bridge', - version='0.17.0rc3', + version='0.17.0rc4', description='Intel nGraph compiler and runtime for TensorFlow', long_description=long_description, long_description_content_type="text/markdown", diff --git a/tools/test_utils.py b/tools/test_utils.py index b9d750ce9..3379ccc07 100755 --- a/tools/test_utils.py +++ b/tools/test_utils.py @@ -124,7 +124,9 @@ def run_ngtf_pytests(venv_dir, build_dir): command_executor(["pip", "install", "-U", "pytest"]) command_executor(["pip", "install", "-U", "psutil"]) - cmd = 'python -m pytest ' + ('--junitxml=%s/xunit_pytest.xml' % build_dir) + cmd = 'python -m pytest ' + ( + '--junitxml=%s/xunit_pytest.xml ' % + build_dir) + "--ignore=" + build_dir + "/test/python/bfloat16" env = os.environ.copy() new_paths = venv_dir + '/bin/python3:' + os.path.abspath( build_dir) + ":" + os.path.abspath(mnist_dir)