Skip to content

Commit 57556f7

Browse files
Merge branch 'master' into r0.13
2 parents 2f8c3e7 + 5bc3b38 commit 57556f7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
232232
ExternalProject_Add(
233233
ext_ngraph
234234
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
235-
GIT_TAG v0.19.0-rc.5
235+
GIT_TAG v0.19.0
236236
CMAKE_ARGS
237237
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
238238
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}

bazel/WORKSPACE

Lines changed: 4 additions & 4 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 = "00217cb05d6882663c0c11ba983ddc3e23fc31aea94893fb8464f401069f132a",
29-
strip_prefix = "ngraph-0.19.0-rc.5",
28+
sha256 = "41f8aae60d79a9d96b3db852c5594e843fcd1bbc2fe5bfe6a947fdbaf518a7e3",
29+
strip_prefix = "ngraph-0.19.0",
3030
urls = [
31-
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.19.0-rc.5.tar.gz",
32-
"https://github.com/NervanaSystems/ngraph/archive/v0.19.0-rc.5.tar.gz"
31+
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.19.0.tar.gz",
32+
"https://github.com/NervanaSystems/ngraph/archive/v0.19.0.tar.gz"
3333
],
3434
)
3535

bazel/ngraph.BUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ cc_library(
7878
"-fstack-protector-all",
7979
'-D SHARED_LIB_PREFIX=\\"lib\\"',
8080
'-D SHARED_LIB_SUFFIX=\\".so\\"',
81-
'-D NGRAPH_VERSION=\\"0.19.0-rc.5\\"',
81+
'-D NGRAPH_VERSION=\\"v0.19.0\\"',
8282
"-D NGRAPH_DEX_ONLY",
8383
'-D PROJECT_ROOT_DIR=\\"\\"',
8484
] + CXX_ABI,
@@ -131,7 +131,7 @@ cc_binary(
131131
"-fstack-protector-all",
132132
'-D SHARED_LIB_PREFIX=\\"lib\\"',
133133
'-D SHARED_LIB_SUFFIX=\\".so\\"',
134-
'-D NGRAPH_VERSION=\\"0.19.0-rc.5\\"',
134+
'-D NGRAPH_VERSION=\\"v0.19.0\\"',
135135
"-D NGRAPH_DEX_ONLY",
136136
'-D PROJECT_ROOT_DIR=\\"\\"',
137137
] + CXX_ABI,
@@ -163,7 +163,7 @@ cc_library(
163163
"-fstack-protector-all",
164164
'-D SHARED_LIB_PREFIX=\\"lib\\"',
165165
'-D SHARED_LIB_SUFFIX=\\".so\\"',
166-
'-D NGRAPH_VERSION=\\"0.19.0-rc.5\\"',
166+
'-D NGRAPH_VERSION=\\"v0.19.0\\"',
167167
"-D NGRAPH_DEX_ONLY",
168168
'-D PROJECT_ROOT_DIR=\\"\\"',
169169
] + CXX_ABI,

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.19.0-rc.5"
27+
ngraph_version = "v0.19.0"
2828
tf_version = "cd701ec1c577211fa05e18d91d73b08014c04034"
2929

3030
# Command line parser options

0 commit comments

Comments
 (0)