Skip to content

Commit ba836fc

Browse files
author
Shrestha Malik
authored
Add Tag info. Ignore bfloat tests when running test_ngtf.py (#195)
Prepare for rc-4 tag Ignore bfloat tests when running ./test_ngtf.py
1 parent 4ad91ca commit ba836fc

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo:
8888

8989
git clone https://github.com/tensorflow/ngraph-bridge.git
9090
cd ngraph-bridge
91-
git checkout v0.17.0-rc3
91+
git checkout v0.17.0-rc4
9292

9393
Run the following Python script to build TensorFlow, nGraph, and the bridge. Use Python 3.5:
9494

ngraph_bridge/version.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
// candidate such as v0.7.0-rc0
3333
// The code in master will always have the last released version number
3434
// with a suffix of '-master'
35-
#define NG_TF_VERSION_SUFFIX "-rc3"
35+
#define NG_TF_VERSION_SUFFIX "-rc4"
3636

3737
#define VERSION_STR_HELPER(x) #x
3838
#define VERSION_STR(x) VERSION_STR_HELPER(x)

python/setup.in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_tag(self):
5959

6060
setup(
6161
name='ngraph_tensorflow_bridge',
62-
version='0.17.0rc3',
62+
version='0.17.0rc4',
6363
description='Intel nGraph compiler and runtime for TensorFlow',
6464
long_description=long_description,
6565
long_description_content_type="text/markdown",

tools/test_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ def run_ngtf_pytests(venv_dir, build_dir):
124124
command_executor(["pip", "install", "-U", "pytest"])
125125
command_executor(["pip", "install", "-U", "psutil"])
126126

127-
cmd = 'python -m pytest ' + ('--junitxml=%s/xunit_pytest.xml' % build_dir)
127+
cmd = 'python -m pytest ' + (
128+
'--junitxml=%s/xunit_pytest.xml ' %
129+
build_dir) + "--ignore=" + build_dir + "/test/python/bfloat16"
128130
env = os.environ.copy()
129131
new_paths = venv_dir + '/bin/python3:' + os.path.abspath(
130132
build_dir) + ":" + os.path.abspath(mnist_dir)

0 commit comments

Comments
 (0)