diff --git a/CMakeLists.txt b/CMakeLists.txt index d2ecebbad..ff508acd6 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.26.0-rc.0 + GIT_TAG v0.26.0-rc.2 CMAKE_ARGS -DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE} -DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR} diff --git a/README.md b/README.md index 978a0995f..ae5353139 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.26.0-rc.0 + git checkout v0.20.0-rc1 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 e15346651..d24e8acce 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 = "d6832d9f923027aa5cc9f49c319fe537d73102600576e4e69be19a0e37d13a43", - strip_prefix = "ngraph-0.26.0-rc.0", + sha256 = "f8827d0a0f1bb114617987f6eb1de8b8aa253a5de34bb993ed3e6ebf4d3f2032", + strip_prefix = "ngraph-0.26.0-rc.2", urls = [ - "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.26.0-rc.0.tar.gz", - "https://github.com/NervanaSystems/ngraph/archive/v0.26.0-rc.0.tar.gz" + "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.26.0-rc.2.tar.gz", + "https://github.com/NervanaSystems/ngraph/archive/v0.26.0-rc.2.tar.gz" ], ) diff --git a/bazel/ngraph.BUILD b/bazel/ngraph.BUILD index fdd9425e7..376bbabe2 100644 --- a/bazel/ngraph.BUILD +++ b/bazel/ngraph.BUILD @@ -82,7 +82,7 @@ cc_library( "-fstack-protector-all", '-D SHARED_LIB_PREFIX=\\"lib\\"', '-D SHARED_LIB_SUFFIX=\\".so\\"', - '-D NGRAPH_VERSION=\\"v0.26.0-rc.0\\"', + '-D NGRAPH_VERSION=\\"v0.26.0-rc.2\\"', "-D NGRAPH_DEX_ONLY", '-D PROJECT_ROOT_DIR=\\"\\"', '-D NGRAPH_STATIC_LIB_ENABLE' @@ -115,7 +115,7 @@ cc_library( "-fstack-protector-all", '-D SHARED_LIB_PREFIX=\\"lib\\"', '-D SHARED_LIB_SUFFIX=\\".so\\"', - '-D NGRAPH_VERSION=\\"v0.26.0-rc.0\\"', + '-D NGRAPH_VERSION=\\"v0.26.0-rc.2\\"', "-D NGRAPH_DEX_ONLY", '-D PROJECT_ROOT_DIR=\\"\\"', ] + CXX_ABI, @@ -267,7 +267,7 @@ cc_library( "-fstack-protector-all", '-D SHARED_LIB_PREFIX=\\"lib\\"', '-D SHARED_LIB_SUFFIX=\\".so\\"', - '-D NGRAPH_VERSION=\\"v0.26.0-rc.0\\"', + '-D NGRAPH_VERSION=\\"v0.26.0-rc.2\\"', "-D NGRAPH_DEX_ONLY", "-D NGRAPH_TBB_ENABLE", '-D PROJECT_ROOT_DIR=\\"\\"', diff --git a/build_ngtf.py b/build_ngtf.py index a61969de9..9ad5bf7ef 100755 --- a/build_ngtf.py +++ b/build_ngtf.py @@ -53,7 +53,7 @@ def main(): ''' # Component versions - ngraph_version = "v0.26.0-rc.0" + ngraph_version = "v0.26.0-rc.2" tf_version = "v1.14.0" # Command line parser options diff --git a/ngraph_bridge/version.cc b/ngraph_bridge/version.cc index 60df876ac..d85569174 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 "-rc0" +#define NG_TF_VERSION_SUFFIX "-rc1" #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 608a91a94..525b271c3 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.20.0rc0', + version='0.20.0rc1', description='Intel nGraph compiler and runtime for TensorFlow', long_description=long_description, long_description_content_type="text/markdown",