From 054b9beb88bd8f245294c3e56396e6d3d624a36a Mon Sep 17 00:00:00 2001 From: avijit-nervana Date: Thu, 4 Apr 2019 13:54:24 -0700 Subject: [PATCH] Final version number update --- README.md | 4 ++-- python/setup.in.py | 2 +- src/version.cc | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d939c750..530f39d7 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ a variety of nGraph-enabled backends: CPU, GPU, and custom silicon like the This will produce something like this: TensorFlow version: 1.13.1 - nGraph bridge version: b'0.12.0-rc2' + nGraph bridge version: b'0.12.0-rc3' nGraph version used for this build: b'0.21.0-rc.0+b638705' TensorFlow version used for this build: v1.13.1-0-g6612da8951 @@ -89,7 +89,7 @@ The installation prerequisites are the same as described in the TensorFlow git clone https://github.com/NervanaSystems/ngraph-tf.git cd ngraph-tf - git checkout v0.12.0-rc2 + git checkout v0.12.0-rc3 2. Next run the following Python script to build TensorFlow, nGraph and the bridge. Please use Python 3.5: diff --git a/python/setup.in.py b/python/setup.in.py index c66f2485..68dafa0e 100644 --- a/python/setup.in.py +++ b/python/setup.in.py @@ -39,7 +39,7 @@ def get_tag(self): setup( name='ngraph_tensorflow_bridge', - version='0.12.0rc2', + version='0.12.0rc3', description='Intel nGraph compiler and runtime for TensorFlow', long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/version.cc b/src/version.cc index aaddbfc7..f919491b 100644 --- a/src/version.cc +++ b/src/version.cc @@ -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 "-rc2" +#define NG_TF_VERSION_SUFFIX "-rc3" #define VERSION_STR_HELPER(x) #x #define VERSION_STR(x) VERSION_STR_HELPER(x)