From 7245605fba59307c19d332d5ef732742fc0ef1c9 Mon Sep 17 00:00:00 2001 From: Avijit Date: Thu, 19 Sep 2019 10:05:04 -0700 Subject: [PATCH] Updated with the correct versions (#251) --- CMakeLists.txt | 2 +- README.md | 2 +- bazel/WORKSPACE | 8 ++++---- bazel/ngraph.BUILD | 4 ++-- build_ngtf.py | 2 +- ngraph_bridge/version.cc | 2 +- python/setup.in.py | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d42737b93..f798537d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -248,7 +248,7 @@ if (NOT USE_PRE_BUILT_NGRAPH) ExternalProject_Add( ext_ngraph GIT_REPOSITORY https://github.com/NervanaSystems/ngraph - GIT_TAG v0.25.1-rc.2 + GIT_TAG v0.25.1-rc.3 CMAKE_ARGS -DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE} -DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR} diff --git a/README.md b/README.md index 26079d40e..d328841a0 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo: git clone https://github.com/tensorflow/ngraph-bridge.git cd ngraph-bridge - git checkout v0.19.0-rc1 + git checkout v0.19.0-rc3 Run the following Python script to build TensorFlow, nGraph, and the bridge. Use Python 3.5: diff --git a/bazel/WORKSPACE b/bazel/WORKSPACE index 49e133ec2..a5eab4a12 100644 --- a/bazel/WORKSPACE +++ b/bazel/WORKSPACE @@ -55,11 +55,11 @@ tf_workspace(path_prefix = "", tf_repo_name = "org_tensorflow") http_archive( name = "ngraph", build_file = "//:bazel/ngraph.BUILD", - sha256 = "d3e0ebf807dd4179c91a41c80639b75f5ea8ca39cdfe3a5697da56a7df894f11", - strip_prefix = "ngraph-0.25.1-rc.2", + sha256 = "b33f0be032ff59044987ff796b636c1b222579705ac29632bba59b6031b0d58c", + strip_prefix = "ngraph-0.25.1-rc.3", urls = [ - "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.2.tar.gz", - "https://github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.2.tar.gz" + "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.3.tar.gz", + "https://github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.3.tar.gz" ], ) diff --git a/bazel/ngraph.BUILD b/bazel/ngraph.BUILD index e42178495..234f7ef25 100644 --- a/bazel/ngraph.BUILD +++ b/bazel/ngraph.BUILD @@ -84,7 +84,7 @@ cc_library( "-fstack-protector-all", '-D SHARED_LIB_PREFIX=\\"lib\\"', '-D SHARED_LIB_SUFFIX=\\".so\\"', - '-D NGRAPH_VERSION=\\"v0.25.1-rc.2\\"', + '-D NGRAPH_VERSION=\\"v0.25.1-rc.3\\"', "-D NGRAPH_DEX_ONLY", '-D PROJECT_ROOT_DIR=\\"\\"', '-D NGRAPH_STATIC_LIB_ENABLE' @@ -117,7 +117,7 @@ cc_library( "-fstack-protector-all", '-D SHARED_LIB_PREFIX=\\"lib\\"', '-D SHARED_LIB_SUFFIX=\\".so\\"', - '-D NGRAPH_VERSION=\\"v0.25.1-rc.2\\"', + '-D NGRAPH_VERSION=\\"v0.25.1-rc.3\\"', "-D NGRAPH_DEX_ONLY", '-D PROJECT_ROOT_DIR=\\"\\"', ] + CXX_ABI, diff --git a/build_ngtf.py b/build_ngtf.py index 9b5d13593..e6aae3ac7 100755 --- a/build_ngtf.py +++ b/build_ngtf.py @@ -53,7 +53,7 @@ def main(): ''' # Component versions - ngraph_version = "v0.25.1-rc.2" + ngraph_version = "v0.25.1-rc.3" tf_version = "v1.14.0" # Command line parser options diff --git a/ngraph_bridge/version.cc b/ngraph_bridge/version.cc index 02188c42b..2fa7cc9fd 100644 --- a/ngraph_bridge/version.cc +++ b/ngraph_bridge/version.cc @@ -32,7 +32,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 "-rc1" +#define NG_TF_VERSION_SUFFIX "-rc3" #define VERSION_STR_HELPER(x) #x #define VERSION_STR(x) VERSION_STR_HELPER(x) diff --git a/python/setup.in.py b/python/setup.in.py index b8365e2dc..e91174d52 100644 --- a/python/setup.in.py +++ b/python/setup.in.py @@ -59,7 +59,7 @@ def get_tag(self): setup( name='ngraph_tensorflow_bridge', - version='0.19.0rc1', + version='0.19.0rc3', description='Intel nGraph compiler and runtime for TensorFlow', long_description=long_description, long_description_content_type="text/markdown",