Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit cdd3c99

Browse files
Avijit/r0.10.0-rc1 (#408)
1 parent fa37cf4 commit cdd3c99

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
239239
ExternalProject_Add(
240240
ext_ngraph
241241
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
242-
GIT_TAG v0.12.0-rc.0
242+
GIT_TAG v0.12.0-rc.1
243243
CMAKE_ARGS
244244
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
245245
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The installation prerequisites are the same as described in the TensorFlow
8484

8585
git clone https://github.com/NervanaSystems/ngraph-tf.git
8686
cd ngraph-tf
87-
git checkout v0.10.0-rc0
87+
git checkout v0.10.0-rc1
8888

8989

9090
2. Next run the following Python script to build TensorFlow, nGraph and the bridge. Please use Python 3.5:

build_ngtf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def main():
432432
#-------------------------------
433433

434434
# Component versions
435-
ngraph_version = "v0.12.0-rc.0"
435+
ngraph_version = "v0.12.0-rc.1"
436436
tf_version = "v1.12.0"
437437

438438
# Default directories

python/setup.in.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_tag(self):
3939

4040
setup(
4141
name='ngraph_tensorflow_bridge',
42-
version='0.10.0-rc0',
42+
version='0.10.0-rc1',
4343
description='Intel nGraph compiler and runtime for TensorFlow',
4444
long_description=long_description,
4545
long_description_content_type="text/markdown",

src/version.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
// The version suffix is used for pre-release version numbers
2828
// For example before v0.7.0 we may do a pre-release i.e., a release
2929
// candidate such as v0.7.0-rc0
30-
#define NG_TF_VERSION_SUFFIX "-rc0"
30+
#define NG_TF_VERSION_SUFFIX "-rc1"
3131

3232
#define VERSION_STR_HELPER(x) #x
3333
#define VERSION_STR(x) VERSION_STR_HELPER(x)

0 commit comments

Comments
 (0)