File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ The installation prerequisites are the same as described in the TensorFlow
8989
9090 git clone https://github.com/tensorflow/ngraph-bridge.git
9191 cd ngraph-bridge
92- git checkout v0.14.1
92+ git checkout v0.14.2
9393
9494
95952 . Next run the following Python script to build TensorFlow, nGraph and the bridge. Please use Python 3.5:
@@ -120,7 +120,7 @@ with nGraph backends. Please note that you can also install the TensorFlow and n
120120 This will produce something like this:
121121
122122 TensorFlow version: 1.13.1
123- nGraph bridge version: b'0.14.1 '
123+ nGraph bridge version: b'0.14.2 '
124124 nGraph version used for this build: b'0.20.0-rc.0+0995b71'
125125 TensorFlow version used for this build: v1.13.1-0-g6612da8951
126126 CXX11_ABI flag used for this build: 0
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ def get_tag(self):
5959
6060setup (
6161 name = 'ngraph_tensorflow_bridge' ,
62- version = '0.14.1 ' ,
62+ version = '0.14.2rc0 ' ,
6363 description = 'Intel nGraph compiler and runtime for TensorFlow' ,
6464 long_description = long_description ,
6565 long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 2323
2424#define NG_TF_MAJOR_VERSION 0
2525#define NG_TF_MINOR_VERSION 14
26- #define NG_TF_PATCH_VERSION 1
26+ #define NG_TF_PATCH_VERSION 2
2727
2828// The version suffix is used for pre-release version numbers
2929// For example before v0.7.0 we may do a pre-release i.e., a release
3030// candidate such as v0.7.0-rc0
3131// The code in master will always have the last released version number
3232// with a suffix of '-master'
33- #define NG_TF_VERSION_SUFFIX " "
33+ #define NG_TF_VERSION_SUFFIX " -rc0 "
3434
3535#define VERSION_STR_HELPER (x ) #x
3636#define VERSION_STR (x ) VERSION_STR_HELPER(x)
You can’t perform that action at this time.
0 commit comments