Skip to content

Commit 265d60a

Browse files
author
Shrestha Malik
committed
Merge remote-tracking branch 'origin/master' into shrestha/tag_rc3
2 parents 7ee3752 + c9c4254 commit 265d60a

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-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 v0.27.1-rc.1
251+
GIT_TAG v0.28.0-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.22.0-rc1
91+
git checkout v0.22.0-rc2
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 = "903991dfdb63304bc08bebab68e0fcb3e62690763b886c42178f363a0beb00f4",
59-
strip_prefix = "ngraph-0.27.1-rc.1",
58+
sha256 = "be59da1e04840b3980d3bcba7925b99ac2007e37e3952ef7c77caedba9734654",
59+
strip_prefix = "ngraph-0.28.0-rc.0",
6060
urls = [
61-
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.27.1-rc.1.tar.gz",
62-
"https://github.com/NervanaSystems/ngraph/archive/v0.27.1-rc.1.tar.gz"
61+
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.28.0-rc.0.tar.gz",
62+
"https://github.com/NervanaSystems/ngraph/archive/v0.28.0-rc.0.tar.gz"
6363
],
6464
)
6565

bazel/ngraph.BUILD

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,13 @@ cc_library(
6868
"-fstack-protector-all",
6969
'-D SHARED_LIB_PREFIX=\\"lib\\"',
7070
'-D SHARED_LIB_SUFFIX=\\".so\\"',
71-
'-D NGRAPH_VERSION=\\"v0.27.1-rc.1\\"',
71+
'-D NGRAPH_VERSION=\\"v0.28.0-rc.0\\"',
7272
"-D NGRAPH_DEX_ONLY",
7373
'-D PROJECT_ROOT_DIR=\\"\\"',
7474
'-D NGRAPH_STATIC_LIB_ENABLE',
7575
'-D NGRAPH_DYNAMIC_COMPONENTS_ENABLE',
7676
'-D NGRAPH_ENABLE_CPU_CONV_AUTO',
77+
'-D NGRAPH_USE_LEGACY_MKLDNN',
7778
"-march=native",
7879
"-mtune=native",
7980
"-Wall",
@@ -111,9 +112,10 @@ cc_library(
111112
"-fstack-protector-all",
112113
'-D SHARED_LIB_PREFIX=\\"lib\\"',
113114
'-D SHARED_LIB_SUFFIX=\\".so\\"',
114-
'-D NGRAPH_VERSION=\\"v0.27.1-rc.1\\"',
115+
'-D NGRAPH_VERSION=\\"v0.28.0-rc.0\\"',
115116
"-D NGRAPH_DEX_ONLY",
116117
'-D PROJECT_ROOT_DIR=\\"\\"',
118+
'-D NGRAPH_USE_LEGACY_MKLDNN',
117119
] + CXX_ABI,
118120
linkopts = [
119121
"-Wl,-z,noexecstack",
@@ -270,10 +272,11 @@ cc_library(
270272
"-fstack-protector-all",
271273
'-D SHARED_LIB_PREFIX=\\"lib\\"',
272274
'-D SHARED_LIB_SUFFIX=\\".so\\"',
273-
'-D NGRAPH_VERSION=\\"v0.27.1-rc.1\\"',
275+
'-D NGRAPH_VERSION=\\"v0.28.0-rc.0\\"',
274276
"-D NGRAPH_DEX_ONLY",
275277
'-D PROJECT_ROOT_DIR=\\"\\"',
276278
'-D NGRAPH_CPU_STATIC_LIB_ENABLE',
279+
'-D NGRAPH_USE_LEGACY_MKLDNN=\\"TRUE\\"',
277280
"-march=native",
278281
"-mtune=native",
279282
"-Wall",

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 = "v0.27.1-rc.1"
56+
ngraph_version = "v0.28.0-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.22.0rc1',
62+
version='0.22.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)