Skip to content

Commit

Permalink
Sarkars/debug 2 provenance tags for single node (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
sayantan-nervana authored Oct 3, 2019
1 parent caed4cd commit 6ed0723
Show file tree
Hide file tree
Showing 13 changed files with 261 additions and 149 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
ExternalProject_Add(
ext_ngraph
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
GIT_TAG v0.25.1-rc.7
GIT_TAG v0.25.1-rc.8
CMAKE_ARGS
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo:

git clone https://github.com/tensorflow/ngraph-bridge.git
cd ngraph-bridge
git checkout v0.19.0-rc4
git checkout v0.19.0-rc5

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

Expand Down
8 changes: 4 additions & 4 deletions bazel/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ tf_workspace(path_prefix = "", tf_repo_name = "org_tensorflow")
http_archive(
name = "ngraph",
build_file = "//:bazel/ngraph.BUILD",
sha256 = "345f0566c3ae4a968daea116c26ce9a90a94305148d6b8b56b6309448432492e",
strip_prefix = "ngraph-0.25.1-rc.7",
sha256 = "4cd939dcf07544dc71f46f422d82a175b210fe7b21417fa67436168d5c40c9dc",
strip_prefix = "ngraph-0.25.1-rc.8",
urls = [
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.7.tar.gz",
"https://github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.7.tar.gz"
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.8.tar.gz",
"https://github.com/NervanaSystems/ngraph/archive/v0.25.1-rc.8.tar.gz"
],
)

Expand Down
4 changes: 2 additions & 2 deletions bazel/ngraph.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ cc_library(
"-fstack-protector-all",
'-D SHARED_LIB_PREFIX=\\"lib\\"',
'-D SHARED_LIB_SUFFIX=\\".so\\"',
'-D NGRAPH_VERSION=\\"v0.25.1-rc.7\\"',
'-D NGRAPH_VERSION=\\"v0.25.1-rc.8\\"',
"-D NGRAPH_DEX_ONLY",
'-D PROJECT_ROOT_DIR=\\"\\"',
'-D NGRAPH_STATIC_LIB_ENABLE'
Expand Down Expand Up @@ -117,7 +117,7 @@ cc_library(
"-fstack-protector-all",
'-D SHARED_LIB_PREFIX=\\"lib\\"',
'-D SHARED_LIB_SUFFIX=\\".so\\"',
'-D NGRAPH_VERSION=\\"v0.25.1-rc.7\\"',
'-D NGRAPH_VERSION=\\"v0.25.1-rc.8\\"',
"-D NGRAPH_DEX_ONLY",
'-D PROJECT_ROOT_DIR=\\"\\"',
] + CXX_ABI,
Expand Down
2 changes: 1 addition & 1 deletion build_ngtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():
'''

# Component versions
ngraph_version = "v0.25.1-rc.7"
ngraph_version = "v0.25.1-rc.8"
tf_version = "v1.14.0"

# Command line parser options
Expand Down
Loading

0 comments on commit 6ed0723

Please sign in to comment.