Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
ExternalProject_Add(
ext_ngraph
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
GIT_TAG v0.20.0-rc.1
GIT_TAG v0.20.1-rc.3
CMAKE_ARGS
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}
Expand Down
10 changes: 5 additions & 5 deletions bazel/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ tf_configure(
http_archive(
name = "ngraph",
build_file = "//:bazel/ngraph.BUILD",
sha256 = "e3b448fb1329b8cf544b3eee2f82656e5b9d60f94fbdaa3448afd20475786a87",
strip_prefix = "ngraph-0.20.0-rc.0",
sha256 = "d2243bd04933558ee9a50aa4977b0ff7e7d7b18820d6ba47a52b212577c38e22",
strip_prefix = "ngraph-0.20.1-rc.3",
urls = [
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.20.0-rc.0-rc.0.tar.gz",
"https://github.com/NervanaSystems/ngraph/archive/v0.20.0-rc.0.tar.gz"
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.20.1-rc.3.tar.gz",
"https://github.com/NervanaSystems/ngraph/archive/v0.20.1-rc.3.tar.gz"
],
)

Expand Down Expand Up @@ -86,4 +86,4 @@ http_archive(
"http://mirror.tensorflow.org/github.com/intel/mkl-dnn/releases/download/v0.18/mklml_lnx_2019.0.3.20190220.tgz",
"https://github.com/intel/mkl-dnn/releases/download/v0.18/mklml_lnx_2019.0.3.20190220.tgz",
],
)
)
2 changes: 1 addition & 1 deletion build_ngtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():
'''

# Component versions
ngraph_version = "v0.20.0-rc.1"
ngraph_version = "v0.20.1-rc.3"
tf_version = "v1.14.0-rc0"

# Command line parser options
Expand Down
2 changes: 1 addition & 1 deletion python/setup.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_tag(self):

setup(
name='ngraph_tensorflow_bridge',
version='0.15.0rc1',
version='0.15.0rc2',
description='Intel nGraph compiler and runtime for TensorFlow',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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 "-rc2"

#define VERSION_STR_HELPER(x) #x
#define VERSION_STR(x) VERSION_STR_HELPER(x)
Expand Down