diff --git a/CMakeLists.txt b/CMakeLists.txt index b9356a902..a750be9fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -234,7 +234,7 @@ if (NOT USE_PRE_BUILT_NGRAPH) ExternalProject_Add( ext_ngraph GIT_REPOSITORY https://github.com/NervanaSystems/ngraph - GIT_TAG v0.25.0-rc.3 + GIT_TAG v0.25.0 CMAKE_ARGS -DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE} -DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR} diff --git a/README.md b/README.md index afd1949df..eba4972c9 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.18.0-rc4 + git checkout v0.18.0 Run the following Python script to build TensorFlow, nGraph, and the bridge. Use Python 3.5: @@ -127,8 +127,8 @@ Verify that `ngraph-bridge` installed correctly: This will produce something like this: TensorFlow version: <1.14.0> - nGraph bridge version: - nGraph version used for this build: b'0.18.0+c5d52f1' + nGraph bridge version: + nGraph version used for this build: b'0.25.0+005c118' TensorFlow version used for this build: CXX11_ABI flag used for this build: 0 nGraph bridge built with Grappler: False diff --git a/bazel/WORKSPACE b/bazel/WORKSPACE index a242b3e27..0005e6b5a 100644 --- a/bazel/WORKSPACE +++ b/bazel/WORKSPACE @@ -25,11 +25,11 @@ tf_configure( http_archive( name = "ngraph", build_file = "//:bazel/ngraph.BUILD", - sha256 = "0b0cbd617653552d219c05bf975acfbcac513061a7b04465a71db324a9d9d7e3", - strip_prefix = "ngraph-0.25.0-rc.3", + sha256 = "8cf773578fca1dc99b41ae49de973206b64810b90cdb375d3b774a790d823347", + strip_prefix = "ngraph-0.25.0", urls = [ - "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.0-rc.3.tar.gz", - "https://github.com/NervanaSystems/ngraph/archive/v0.25.0-rc.3.tar.gz" + "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.0.tar.gz", + "https://github.com/NervanaSystems/ngraph/archive/v0.25.0.tar.gz" ], ) diff --git a/build_ngtf.py b/build_ngtf.py index 4b5a0d4ae..6d5f63df0 100755 --- a/build_ngtf.py +++ b/build_ngtf.py @@ -53,7 +53,7 @@ def main(): ''' # Component versions - ngraph_version = "v0.25.0-rc.3" + ngraph_version = "v0.25.0" tf_version = "v1.14.0" # Command line parser options diff --git a/ngraph_bridge/version.cc b/ngraph_bridge/version.cc index 5e0a62b28..f93fc5c57 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 "-rc4" +#define NG_TF_VERSION_SUFFIX "" #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 d9d03551f..273020acc 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.18.0rc4', + version='0.18.0', description='Intel nGraph compiler and runtime for TensorFlow', long_description=long_description, long_description_content_type="text/markdown",