Skip to content

Commit

Permalink
UPdated the version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
avijit-nervana committed May 31, 2019
1 parent 2b7669d commit f6447f6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The installation prerequisites are the same as described in the TensorFlow

git clone https://github.com/tensorflow/ngraph-bridge.git
cd ngraph-bridge
git checkout v0.14.1-rc0
git checkout v0.14.1


2. Next run the following Python script to build TensorFlow, nGraph and the bridge. Please use Python 3.5:
Expand Down Expand Up @@ -120,7 +120,7 @@ with nGraph backends. Please note that you can also install the TensorFlow and n
This will produce something like this:

TensorFlow version: 1.13.1
nGraph bridge version: b'0.14.1-rc0'
nGraph bridge version: b'0.14.1'
nGraph version used for this build: b'0.20.0-rc.0+0995b71'
TensorFlow version used for this build: v1.13.1-0-g6612da8951
CXX11_ABI flag used for this build: 0
Expand Down
2 changes: 1 addition & 1 deletion python/setup.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_tag(self):

setup(
name='ngraph_tensorflow_bridge',
version='0.14.1rc0',
version='0.14.1',
description='Intel nGraph compiler and runtime for TensorFlow',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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 "rc0"
#define NG_TF_VERSION_SUFFIX ""

#define VERSION_STR_HELPER(x) #x
#define VERSION_STR(x) VERSION_STR_HELPER(x)
Expand Down
4 changes: 3 additions & 1 deletion tools/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,9 @@ def run_bazel_build_test(venv_dir, build_dir):
# Build the bridge
command_executor(['bazel', 'build', 'libngraph_bridge.so'])

# Build the backend
# Build the backends
command_executor(['bazel', 'build', '@ngraph//:libinterpreter_backend.so'])
command_executor(['bazel', 'build', '@ngraph//:libcpu_backend.so'])

# Return to the original directory
os.chdir(root_pwd)
Expand All @@ -479,6 +480,7 @@ def run_bazel_build():

# Build the backend
command_executor(['bazel', 'build', '@ngraph//:libinterpreter_backend.so'])
command_executor(['bazel', 'build', '@ngraph//:libcpu_backend.so'])

# Return to the original directory
os.chdir(root_pwd)

0 comments on commit f6447f6

Please sign in to comment.