Skip to content

Commit ca8e130

Browse files
Avijit/r15 path (#142)
1 parent a93b575 commit ca8e130

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
234234
ExternalProject_Add(
235235
ext_ngraph
236236
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
237-
GIT_TAG v0.20.0-rc.1
237+
GIT_TAG v0.20.1-rc.3
238238
CMAKE_ARGS
239239
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
240240
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}

bazel/WORKSPACE

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ tf_configure(
2525
http_archive(
2626
name = "ngraph",
2727
build_file = "//:bazel/ngraph.BUILD",
28-
sha256 = "e3b448fb1329b8cf544b3eee2f82656e5b9d60f94fbdaa3448afd20475786a87",
29-
strip_prefix = "ngraph-0.20.0-rc.0",
28+
sha256 = "d2243bd04933558ee9a50aa4977b0ff7e7d7b18820d6ba47a52b212577c38e22",
29+
strip_prefix = "ngraph-0.20.1-rc.3",
3030
urls = [
31-
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.20.0-rc.0-rc.0.tar.gz",
32-
"https://github.com/NervanaSystems/ngraph/archive/v0.20.0-rc.0.tar.gz"
31+
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.20.1-rc.3.tar.gz",
32+
"https://github.com/NervanaSystems/ngraph/archive/v0.20.1-rc.3.tar.gz"
3333
],
3434
)
3535

@@ -86,4 +86,4 @@ http_archive(
8686
"http://mirror.tensorflow.org/github.com/intel/mkl-dnn/releases/download/v0.18/mklml_lnx_2019.0.3.20190220.tgz",
8787
"https://github.com/intel/mkl-dnn/releases/download/v0.18/mklml_lnx_2019.0.3.20190220.tgz",
8888
],
89-
)
89+
)

build_ngtf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def main():
2424
'''
2525

2626
# Component versions
27-
ngraph_version = "v0.20.0-rc.1"
27+
ngraph_version = "v0.20.1-rc.3"
2828
tf_version = "v1.14.0-rc0"
2929

3030
# Command line parser options

python/setup.in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_tag(self):
5959

6060
setup(
6161
name='ngraph_tensorflow_bridge',
62-
version='0.15.0rc1',
62+
version='0.15.0rc2',
6363
description='Intel nGraph compiler and runtime for TensorFlow',
6464
long_description=long_description,
6565
long_description_content_type="text/markdown",

src/version.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// candidate such as v0.7.0-rc0
3131
// The code in master will always have the last released version number
3232
// with a suffix of '-master'
33-
#define NG_TF_VERSION_SUFFIX "-rc1"
33+
#define NG_TF_VERSION_SUFFIX "-rc2"
3434

3535
#define VERSION_STR_HELPER(x) #x
3636
#define VERSION_STR(x) VERSION_STR_HELPER(x)

0 commit comments

Comments
 (0)