We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f8c3e7 + 5bc3b38 commit 57556f7Copy full SHA for 57556f7
CMakeLists.txt
@@ -232,7 +232,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
232
ExternalProject_Add(
233
ext_ngraph
234
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
235
- GIT_TAG v0.19.0-rc.5
+ GIT_TAG v0.19.0
236
CMAKE_ARGS
237
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
238
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}
bazel/WORKSPACE
@@ -25,11 +25,11 @@ tf_configure(
25
http_archive(
26
name = "ngraph",
27
build_file = "//:bazel/ngraph.BUILD",
28
- sha256 = "00217cb05d6882663c0c11ba983ddc3e23fc31aea94893fb8464f401069f132a",
29
- strip_prefix = "ngraph-0.19.0-rc.5",
+ sha256 = "41f8aae60d79a9d96b3db852c5594e843fcd1bbc2fe5bfe6a947fdbaf518a7e3",
+ strip_prefix = "ngraph-0.19.0",
30
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"
+ "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.19.0.tar.gz",
+ "https://github.com/NervanaSystems/ngraph/archive/v0.19.0.tar.gz"
33
],
34
)
35
bazel/ngraph.BUILD
@@ -78,7 +78,7 @@ cc_library(
78
"-fstack-protector-all",
79
'-D SHARED_LIB_PREFIX=\\"lib\\"',
80
'-D SHARED_LIB_SUFFIX=\\".so\\"',
81
- '-D NGRAPH_VERSION=\\"0.19.0-rc.5\\"',
+ '-D NGRAPH_VERSION=\\"v0.19.0\\"',
82
"-D NGRAPH_DEX_ONLY",
83
'-D PROJECT_ROOT_DIR=\\"\\"',
84
] + CXX_ABI,
@@ -131,7 +131,7 @@ cc_binary(
131
132
133
134
135
136
137
@@ -163,7 +163,7 @@ cc_library(
163
164
165
166
167
168
169
build_ngtf.py
@@ -24,7 +24,7 @@ def main():
24
'''
# Component versions
- ngraph_version = "v0.19.0-rc.5"
+ ngraph_version = "v0.19.0"
tf_version = "cd701ec1c577211fa05e18d91d73b08014c04034"
# Command line parser options
0 commit comments