Skip to content

Commit 5bc3b38

Browse files
Updated with nGraph 0.19.0
1 parent 457af5b commit 5bc3b38

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
@@ -239,7 +239,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
239239
ExternalProject_Add(
240240
ext_ngraph
241241
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
242-
GIT_TAG v0.19.0-rc.5
242+
GIT_TAG v0.19.0
243243
CMAKE_ARGS
244244
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
245245
-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 = "v1.13.1"
2929

3030
# Command line parser options

0 commit comments

Comments
 (0)