Skip to content

Commit 8afa13b

Browse files
sindhu-nervanaShrestha Malik
authored andcommitted
sindhu/update to ngraph v0.27.1-rc.0 (#371)
Update to Ngraph v0.27.1-rc.0
1 parent 1816c46 commit 8afa13b

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
248248
ExternalProject_Add(
249249
ext_ngraph
250250
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
251-
GIT_TAG e543688981ea2083a260929a70420f5ba6984d95
251+
GIT_TAG v0.27.1-rc.0
252252
CMAKE_ARGS
253253
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
254254
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo:
8888

8989
git clone https://github.com/tensorflow/ngraph-bridge.git
9090
cd ngraph-bridge
91-
git checkout v0.21.0-rc0
91+
git checkout v0.21.0-rc1
9292

9393
Run the following Python script to build TensorFlow, nGraph, and the bridge. Use Python 3.5:
9494

bazel/WORKSPACE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ tf_workspace(path_prefix = "", tf_repo_name = "org_tensorflow")
5555
http_archive(
5656
name = "ngraph",
5757
build_file = "//:bazel/ngraph.BUILD",
58-
sha256 = "b178f456dcfb212e0ab97fbb9b60efe35e749c8c361234bf2810c71083b8c455",
59-
strip_prefix = "ngraph-e543688981ea2083a260929a70420f5ba6984d95",
58+
sha256 = "facce2ccb12688961a4899272908522db526a1fb210fd6c4c6ef15a6c5e39940",
59+
strip_prefix = "ngraph-0.27.1-rc.0",
6060
urls = [
61-
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/e543688981ea2083a260929a70420f5ba6984d95.tar.gz",
62-
"https://github.com/NervanaSystems/ngraph/archive/e543688981ea2083a260929a70420f5ba6984d95.tar.gz"
61+
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.27.1-rc.0.tar.gz",
62+
"https://github.com/NervanaSystems/ngraph/archive/v0.27.1-rc.0.tar.gz"
6363
],
6464
)
6565

bazel/ngraph.BUILD

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ cc_library(
6868
"-fstack-protector-all",
6969
'-D SHARED_LIB_PREFIX=\\"lib\\"',
7070
'-D SHARED_LIB_SUFFIX=\\".so\\"',
71-
'-D NGRAPH_VERSION=\\"e543688981ea2083a260929a70420f5ba6984d95\\"',
71+
'-D NGRAPH_VERSION=\\"v0.27.1-rc.0\\"',
7272
"-D NGRAPH_DEX_ONLY",
7373
'-D PROJECT_ROOT_DIR=\\"\\"',
7474
'-D NGRAPH_STATIC_LIB_ENABLE',
@@ -111,7 +111,7 @@ cc_library(
111111
"-fstack-protector-all",
112112
'-D SHARED_LIB_PREFIX=\\"lib\\"',
113113
'-D SHARED_LIB_SUFFIX=\\".so\\"',
114-
'-D NGRAPH_VERSION=\\"e543688981ea2083a260929a70420f5ba6984d95\\"',
114+
'-D NGRAPH_VERSION=\\"v0.27.1-rc.0\\"',
115115
"-D NGRAPH_DEX_ONLY",
116116
'-D PROJECT_ROOT_DIR=\\"\\"',
117117
] + CXX_ABI,
@@ -150,6 +150,7 @@ cc_library(
150150
"src/ngraph/runtime/cpu/cpu_tensor_view.cpp",
151151
"src/ngraph/runtime/cpu/cpu_tracing.cpp",
152152
"src/ngraph/runtime/cpu/cpu_visualize_tree.cpp",
153+
"src/ngraph/runtime/cpu/builder/cum_sum.cpp",
153154
"src/ngraph/runtime/cpu/cpu_cse.cpp",
154155
"src/ngraph/runtime/cpu/cpu_debugger.cpp",
155156
"src/ngraph/runtime/cpu/builder/add.cpp",
@@ -268,7 +269,7 @@ cc_library(
268269
"-fstack-protector-all",
269270
'-D SHARED_LIB_PREFIX=\\"lib\\"',
270271
'-D SHARED_LIB_SUFFIX=\\".so\\"',
271-
'-D NGRAPH_VERSION=\\"v0.27.0-rc.0\\"',
272+
'-D NGRAPH_VERSION=\\"v0.27.1-rc.0\\"',
272273
"-D NGRAPH_DEX_ONLY",
273274
'-D PROJECT_ROOT_DIR=\\"\\"',
274275
'-D NGRAPH_CPU_STATIC_LIB_ENABLE',

build_ngtf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def main():
5353
'''
5454

5555
# Component versions
56-
ngraph_version = "e543688981ea2083a260929a70420f5ba6984d95" # Nagy Mostafa [MLIR] Fused Ops dialect declaration (#3860)
56+
ngraph_version = "v0.27.1-rc.0"
5757
tf_version = "v1.14.0"
5858

5959
# 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.21.0rc1',
62+
version='0.21.0rc2',
6363
description='Intel nGraph compiler and runtime for TensorFlow',
6464
long_description=long_description,
6565
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)